(@_@;)我是程序猿,我编程,我快乐,知识改变命运,技术成就梦想   oh yeah!合作VX "w6668263" 联系Email:ye583025823@126.com

用CSS下划线距离

但在我在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;  /*这里设置你要空的距离*/
}

 

posted on 2016-05-11 13:57  一个草率的龙果果  阅读(9557)  评论(0编辑  收藏  举报

导航