用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;  /*這里設置你要空的距離*/
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM