css控制字体下划线使用text-decoration :
- text-decoration:none 无装饰,通常对html下划线标签去掉下划线样式
- text-decoration:underline 下划线样式
- test-decoration:line-through 贯穿线样式
- test-decoration:overline 上划线样式
实例:
<a href="#" class="item-title"/> <style scoped> .item-title { text-decoration: none; } .item-title:hover { text-decoration: underline; } </style>