在編寫網(wǎng)頁的時(shí)候,我們可能會(huì)用到css鏈接去除點(diǎn)的樣式。這種樣式可以讓鏈接去除下劃線,但是仍然會(huì)在文本周圍有一個(gè)點(diǎn)的效果。
a { text-decoration: none; border-bottom: none; }
這段代碼可以很好的去除鏈接的下劃線,但是依然會(huì)在鏈接周圍留下一個(gè)點(diǎn)的占位。
為了完全去除鏈接的點(diǎn),我們需要使用以下樣式:
a { text-decoration: none; border-bottom: none; outline: none; }
使用這種樣式可以完全去除鏈接周圍的點(diǎn),讓鏈接更加干凈。
下一篇css鏈接到模塊