用CSS实现链接的虚线下划线效果

2022-04-15 0 1,071

修改您的样式表,找下边这段(一般都在开头)

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需再刷新一下页面才能执行]

免责声明:
1、本网站所有发布的源码、软件和资料均为收集各大资源网站整理而来;仅限用于学习和研究目的,您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。 不得使用于非法商业用途,不得违反国家法律。否则后果自负!

2、本站信息来自网络,版权争议与本站无关。一切关于该资源商业行为与www.niceym.com无关。
如果您喜欢该程序,请支持正版源码、软件,购买注册,得到更好的正版服务。
如有侵犯你版权的,请邮件与我们联系处理(邮箱:skknet@qq.com),本站将立即改正。

NICE源码网 CSS/HTML 用CSS实现链接的虚线下划线效果 https://www.niceym.com/13568.html