當(dāng)前位置:首頁文章首頁 IT學(xué)院 IT技術(shù)

教你將鏈接的下劃線做成虛線

作者:  來源:  發(fā)布時(shí)間:2011-5-30 15:16:45  點(diǎn)擊:

本文章分享給大家學(xué)習(xí)的是教你如何將鏈接的下劃線做成虛線,我們?cè)跒g覽網(wǎng)頁時(shí),經(jīng)常會(huì)碰到有的鏈接的下劃線是虛線,者在link與hover不同狀態(tài),下劃線會(huì)從虛線到實(shí)線的變化。這樣的效果是如何實(shí)現(xiàn)的呢?下面是一個(gè)實(shí)例代碼,希望對(duì)大家有所幫助。

<style type="text/css">
<!--
a.texta {
 text-decoration:none;
 border-bottom:1px dashed #ccc;
 color:#c00;
}
a.texta:hover {
 border-bottom:1px solid #c00;
 color:#666;
}

a.textb {
 text-decoration:none;
 border-bottom:1px dashed #ccc;
 color:#069;
}
a.textb:hover {
 border-bottom:1px dashed #c00;
 color:#000;
}
-->
</style>
<a href="http://m.tipsywinegypsy.com/" class="texta">m.tipsywinegypsy.com</a><br /><br />
<a href="http://m.tipsywinegypsy.com/" class="textb">m.tipsywinegypsy.com</a>

其實(shí)這樣的效果,是設(shè)置text-decoration:none。也就是去除了鏈接的下劃線。然后再給鏈接加下邊框線,設(shè)置下邊框線不同的寬度、線型、顏色,就可以實(shí)現(xiàn)“下劃線”變成多樣效果?梢詤⒖缄P(guān)于border-style的屬性。

 

文章評(píng)論

軟件按字母排列: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z