可以通過text-decoration屬性來改變鏈接的樣式。常見的取值包括:
例如,可以使用以下CSS代碼來改變鏈接的樣式:
a {
text-decoration: none; /*去掉鏈接的下劃線*/
}
a:hover {
text-decoration: underline; /*鼠標懸停時添加下劃線*/
}
a:visited {
text-decoration: line-through; /*訪問過的鏈接添加一條線*/
}
通過調整text-decoration屬性的取值,可以自定義鏈接的樣式。