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