网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 a标签怎么去下划线以及实现点击前和点击后不变色
内容
    a标签在网页中经常会用到,其默认有下划线和点击前和点击后变色,现在的需求是如何让其不带下划线,以及点击不变色,下面有个不错的教程,大家可以参考下 
    代码如下:
    a:link { 
    font-size: 12px; 
    color: #000000; 
    text-decoration: none; 
    } 
    a:visited { 
    font-size: 12px; 
    color: #000000; 
    text-decoration: none; 
    } 
    a:hover { 
    font-size: 12px; 
    color: #999999; 
    text-decoration: underline; 
    } 
    这样定义样式表就可以实现你的功能了,不会样式表的话,可以把下面的代码加到你的页面中<head></head>标签里: 
    代码如下:
    <style type="text/css"> 
    <!-- 
    a:link { 
    font-size: 12px; 
    color: #000000; 
    text-decoration: none; 
    } 
    a:visited { 
    font-size: 12px; 
    color: #000000; 
    text-decoration: none; 
    } 
    a:hover { 
    font-size: 12px; 
    color: #999999; 
    text-decoration: underline; 
    } 
    --> 
    </style> 
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/16 15:03:45