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