一聚教程网:一个值得你收藏的教程网站

热门教程

用CSS样式表来定义博客上的链接样式

时间:2022-07-02 13:03:41 编辑:袖梨 来源:一聚教程网

css">
A { text-decoration: NONE; color:#51bfe0}
A:hover {font-weight: bold;color:#990099}

 鼠标鼠标放在链接字体上的时候,链接字体大小改变,颜色改变,有背景颜色。font-size:23表示字体大小;background:#ffd306表示背景颜色color:#990099表示字体颜色,可以根据个人爱好修改,其他的不需要改。

a:link{text-decoration:none}
a:hover{text-decoration:none}
a:visited{text-decoration:none}

 
去掉链接字体的下划线。

A { text-decoration: NONE; color: #51bfe0}
A:hover {border-bottom:1px dashed #51bfe0 }

 
鼠标放在链接字体上的时候,链接字体加虚线。

A { text-decoration: NONE; color: #51bfe0}
A:hover { position: relative; left:10px; top:10px; }
 
鼠标放在链接字体上的时候,链接字体会移动,其left:10px表示字体向上移动的距离,top:10px表示字体向上移动的距离,可以根据个人爱好修改具体数值,其他的不需要改。

a { text-decoration: none; padding-bottom: 4px; white-space: nowrap; }
a:hover { background: url(背景图片地址) repeat-x 100% 100%; }
 

热门栏目