码迷,mamicode.com
首页 > Web开发 > 详细

用CSS下划线距离

时间:2016-05-11 14:52:50      阅读:233      评论:0      收藏:0      [点我收藏+]

标签:

但在我在CSS中新加了TEXT-DECORATION: underline; 后发现下划线离文本太近了,很难看。

代码一:

a {
text-decoration: none; 
background: url(underline.gif) repeat-x 100% 100%;
padding-bottom: 4px;
white-space: nowrap;
}

代码二:

a { text-decoration: none; padding:0 0 6 0; border-bottom-color:0; border-bottom-width:1px; border-bottom-style:solid; }

代码三:

a{  
text-decoration:none; 
border-bottom:1px solid #ccc; /* #ccc换成链接的颜色 */
display: inline-block; 
padding-bottom:10px;  /*这里设置你要空的距离*/
}

 

用CSS下划线距离

标签:

原文地址:http://www.cnblogs.com/yeminglong/p/5481645.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!