消除router-link 的下划线问题
Posted wayneliu007
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了消除router-link 的下划线问题相关的知识,希望对你有一定的参考价值。
<div class="small-size"> <router-link to="/About"> <img src="../../static/imgs/index/index02.jpg" alt="图片加载失败" class="img-shadow"> <p class="mg3imageItem" >公司简介</p> <span style="font-size: 12px" class="font-style"> 广州安腾达化工科技有限公司成立于2012年,专注于创新材料、特殊树脂、高性能添加剂。 </span> </router-link> </div>
使用router-link实现路由跳转,代码如上,
虽然能实现跳转了,但是文字带有了下划线,不好看
要消除下划线,增加一下样式代码即可:
a { text-decoration: none; } .router-link-active { text-decoration: none; }
效果如下
以上是关于消除router-link 的下划线问题的主要内容,如果未能解决你的问题,请参考以下文章
IDEA 程序出现 Class 'xxx' is never used 警告下划线如何消除