如何通过CSS实现超链接的 下划线 加粗效果?

html-css028

如何通过CSS实现超链接的 下划线 加粗效果?,第1张

a{color:redbordeR-bottom:15px solid redtext-decoration:noneline-height:50px}

要注意line-height的值一定要高于 字体大小 + border-bottom的高度

用样式:text-decoration:underline即可

style="text-decoration:underline"

<table width="200" border="1">

<tr>

<td style="text-decoration:underline">this is a test</td>

<td> </td>

<!--没有用text-decoration:underline样式的-->

<td>this is a test </td>

</tr>

<tr>

<td> </td>

<td> </td>

<td> </td>

</tr>

</table>