CSS3鏈接樣式是現代網頁設計中最常用的樣式之一,它可以改變鏈接的外觀和行為。下面是一些常用的CSS3鏈接樣式代碼:
/* 顏色 */ a:link { color: blue; } a:visited { color: purple; } a:hover { color: red; } a:active { color: green; } /* 下劃線 */ a:link { text-decoration: underline; } a:hover { text-decoration: none; } a:visited, a:active { text-decoration: underline; } /* 背景色 */ a:link { background-color: yellow; } a:hover { background-color: orange; } a:visited, a:active { background-color: green; } /* 特效 */ a:hover { transform: rotate(45deg); } a:visited, a:active { transform: scale(1.5); }
以上是常用的CSS3鏈接樣式代碼,可以根據自己的需要進行修改并應用到自己的網頁中。