CSS [attribute=value] 选择器

CSS完整选择器完整CSS选择器参考手册

实例

选择所有使用target="_blank"的a元素

a[target=_blank]
{
background-color:yellow;
}


<h2定义和用法