鏈接元素的所有CSS屬性可以合並為:
a {
text-decoration: none;
background: url(underline.gif) repeat-x 100% 100%;
padding-bottom: 4px;
white-space: nowrap;
}
如果你想自定義下劃線的效果只在鼠標滑過鏈接時出現,只需設置CSS背景屬性為:hover偽類,取代直接設置於鏈接元素上的樣式即可。
a {
text-decoration: none;
padding-bottom: 4px;
white-space: nowrap;
}
a:hover {
background: url(underline.gif) repeat-x 100% 100%;
}