修改您的样式表,找下边这段(一般都在开头)
a {
color:#3399FF;
font-weight:Normal; /*字体效果 普通 可以改成bold粗体*/
text-decoration:none; /*下划线效果:无下划线*/
}
a:hover {
color:#4499EE;
text-decoration:none; /*下划线效果:无下划线*/
border-bottom: 1px #0099CC dotted /*加一个只有下边的框 边框为虚线*/
}
a{}控制连接的效果 a:hover{}控制鼠标移上去的效果。
一些CSS定义虚线实例代码
<style> table{width:200px;height:100px;} .table1{border:1px solid #6E6B85} .table2{border:1px solid #000 dotted} .table3{border-top:1px solid #f00 dotted;border-left:1px solid #f00 dotted;} .table3 td{border-right:1px solid #f00 dotted;border-bottom:1px solid #f00 dotted;} .table4 td{border:1px solid #f00 dotted;} </style> <table class=”table1″> <tr align=”center”> <td>TD一</td><td>TD二</td> </tr> </table> <table class=”table2″> <tr align=”center”> <td>TD一</td><td>TD二</td> </tr> </table> <table class=”table3″> <tr align=”center”> <td>TD一</td><td>TD二</td> </tr> </table> <table class=”table4″> <tr align=”center”> <td>TD一</td><td>TD二</td> </tr> </table>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
<html> <head> <meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″> <title>新建网页 2</title> </head> <body> <table width=150px height=150px> <tr > <td style=”border-top:1px dotted buttonface”> haha</td> <td style=”border-top:1px dotted buttonface;border-left:1px dotted buttonface”>haha</td> </tr> <tr> <td style=”border-top:1px dotted buttonface;border-bottom:1px dotted buttonface”>haha</td> <td style=”border-top:1px dotted buttonface;border-left:1px dotted buttonface;border-bottom:1px dotted buttonface”>haha</td> </tr> </table> </body> </html>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
<table width=”100″ height=”100″ border=”0″ cellpadding=”0″ cellspacing=”0″ style=”border: 1px dashed #000000;”> <tr> <td> </td> </tr> </table>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
<table> <tr align=”center”> <td style=”width:100px;height:100px;border-right:1px solid #f00 dotted;border-left:1px solid #f00 dotted”>TD</td> </tr> </table>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]
<table> <tr align=”center”> <td style=”width:100px;height:100px;border:dotted 1px black; border-width:0 1px;”>TD</td> </tr> </table>
[Ctrl+A 全选 注:引入外部Js需再刷新一下页面才能执行]