多个属性的CSS?

时间:2013-03-09 03:35:25

标签: html css

我正在努力巩固以下内容:

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

这样的事情:

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

我尝试了这个,type="text", "password"以及其他一些事情。

2 个答案:

答案 0 :(得分:6)

您可以根据需要使用多个选择器commas

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

答案 1 :(得分:1)

或者只是

input { width: 300px; }

然后通过类型选择器

应用任何其他样式
input[type="text"] { background: #ffd; }
input[type="password"] { background: #fff; }