<a href="#" title="我有title属性">第一个链接</a>
<a href="#">第二个链接</a>
样式:
a[title]{color:Red;}
a[title]:hover{ background-color:#CCC;}
这样可实现对a标签中带Title属性的单独设置样式为红色。并设置动态伪类Hover,当鼠标经过时更改背景为#CCC。
效果图:
<a href="#" title="我有title属性">第一个链接</a>
<a href="#">第二个链接</a>
样式:
a[title]{color:Red;}
a[title]:hover{ background-color:#CCC;}
这样可实现对a标签中带Title属性的单独设置样式为红色。并设置动态伪类Hover,当鼠标经过时更改背景为#CCC。
效果图: