html下划線
<ins>即下划線標簽 但是通常來講,不要給普通文本加下划線,因為用戶會誤以為是一個超鏈 ...
<ins>即下划線標簽 但是通常來講,不要給普通文本加下划線,因為用戶會誤以為是一個超鏈 ...
首先來了解下<a>標簽的一些樣式: <a>標簽的偽類樣式 一組專門的預定義的類稱為偽類,主要用來處理超鏈接的狀態。超鏈接文字的狀態可以通過偽類選擇符+樣式規則來控制。偽類選擇符包括: 總: a 表示所有狀態下的連接 如 a{color:red} ① a:link ...
<style type="text/css">a:link,a:visited{ text-decoration:none; /*超鏈接無下划線*/}a:hover{ text-decoration:underline; /*鼠標放上去有下划線*/}</style> ...
CSS: 上划線:text-decoration:overline 中划線:text-decoration:line-through 下划線:text-decoration:underline 例子:<h2 style="text-decoration ...
<style type="text/css"> <!-- a:link { text-decoration: none;color: blue} a:active { t ...