DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> 關於CSS >> CSS代碼:自定義網頁超鏈接下劃線
CSS代碼:自定義網頁超鏈接下劃線
編輯:關於CSS     

鏈接元素的所有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%;
}

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved