大小标记在webform中不起作用

时间:2015-06-23 07:44:47

标签: html

我正在使用this页面上的联系表单。我已将每个表单项的大小设置为40.由于某种原因,名称输入区域不等于其他区域的宽度。请指导我这里有什么问题。

<input type="text" name="your-name" value="" size="40" maxlength="40" class="wpcf7-form-control wpcf7-text wpcf7-validates-as-required" aria-required="true" aria-invalid="false">

1 个答案:

答案 0 :(得分:1)

你的css中有:

input[type="text"], input[type="password"], select, textarea {
    background: #FFF none repeat scroll 0% 0%;
    border: 1px solid #C7C7C7;
    color: #004990;
    padding: 3px;
    width: 220px;

你的姓名&#34;字段输入文字,因此它应用了220px宽度,但您的其他字段是电子邮件 tel 类型,因此它不会应用css。