css控制字体线使用:text-decoration

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>

猜你喜欢

转载自www.cnblogs.com/spaceapp/p/10304473.html
今日推荐