请教个问题,关于属性选择器

hi,all

p{
color:green;
}
p[type="title"]{
color:red
}
这样写产生了一个问题,p[type="title"]会被忽略,chorme调试style,重新勾选样式恢复正常,chorme好强大的感觉。
input {
width:100px;
}
input[type="title"]{
width:200px;
}
这样写是正常的。

type这个属性不能用于非表单元素吗?属性选择器中是否可以用自定义属性?

Received on Wednesday, 23 October 2013 06:25:52 UTC