CSS:为文本和密码输入提供相同的宽度

时间:2010-06-23 06:35:07

标签: css input css-selectors

我正在尝试为文本和密码输入提供相同的宽度。

所以我写这个:

input[type="text","password"]{

    width: 138px;

}

但它不起作用。

任何帮助?

此致

哈维

4 个答案:

答案 0 :(得分:16)

怎么样:

input[type="text"], input[type="password"]
{
    width: 138px;
}

或者你使用class / ids:

input.text, input.password
{
    width: 138px;
}

答案 1 :(得分:3)

怎么样?

input[type="text"],
input[type="password"]{
  width: 138px;
}

答案 2 :(得分:2)

input[type="text"], input[type="password"]

答案 3 :(得分:1)

请参阅W3C规范中的Attribute selectors。选择器没有任何支持多值的格式。要解决此问题,您可以关注faileN's answer