4.8 特定元素相关的样式

有一些样式,仅在特定元素上才有。以下列举了一些常用的。
链接
链接默认值是text-decoration:underline,也就是有下划线,如果要清除,只需要写text-decoration:none
<style>
.link-test{
    text-decoration:none;
}
.link-test2{
    text-decoration:underline !important;
}
</style>
<a class="link-test"  href="#"> 我是链接,我没有下划线<a/>
<br/>
<a class="link-test2"  href="#"> 我是链接,我有下划线<a/>
列表
列表项目