h5---链接

摘要:
在标题下方添加以下代码以取消链接下方的下划线<链接{text-decoration:颜色:红色;访问的{color:绿色;悬停{color:蓝色;下划线;活动的{颜色:橙色;文本装饰:眨眼;}</样式>链接是指尚未访问的正常链接;活动指的是被点击的链接;

在标题下方加入如下代码实现链接下方下划线取消

<style>

a:link {text-decoration: none;color:red;}

a:visited {color:green;text-decoration:none;}

a:hover  {color:blue;text-decoration:underline;}

a:active {color:orange;text-decoration:blink;}

</style>

a:link 指正常的未被访问过的链接;

a:active 指正在点的链接;

a:hover 指鼠标在链接上;

a:visited 指已经访问过的链接;

text-decoration是文字修饰效果的意思;

none参数表示超链接文字不显示下划线;

underline参数表示超链接的文字有下划线

 

免责声明:文章转载自《h5---链接》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇Kendall Rank(肯德尔等级)相关系数了解grep、vim的查找 和正则表达式下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

springmvc 后端入口参数接收

package controller; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.R...

MongoDB副本集提高读写速率

一、提高副本集写的速率 1、通过设置Write Concern for Replica Sets¶ cfg = rs.conf()##cfg.settings.getLastErrorDefaults = { w: "majority", wtimeout: 5000 } cfg.settings.getLastErrorDefaults ={w:1}r...

0703-spring cloud config-git配置属性加解密之对称加密

一、概述   可以使用{cipher} *格式的加密值,只要有一个有效的密钥,那么它们将在主应用程序上下文获取环境之前被解密。要在应用程序中使用加密功能,您需要在您的类路径中包含Spring Security RSA(Maven协调“org.springframework.security:spring-security-rsa”),并且您还需要JVM中的...

增加wamp64 PHP支持版本

1.停止WAMP服务器.2.下载要安装的PHP版本。下载Window版本的ZIP包啦:http://php.net/downloads.php。解压到 Wamp的安装目录C:wamp64inphpphp7.2.13.从已存在的php版本文件中(如phpphp7.1.9 (C:wamp64inphpphp7.1.9)复制以下文件: - php.ini、php...

Brocade SAN交换机常用命令

Brocade SAN交换机常用命令 使用电脑连接Brocade SAN交换机常用命令 使用电脑连接管理网口,默认IP地址为:10.77.77.77,掩码:255.255.255.0 默认用户名:admin,默认密码password 1. switchStatusShow 查看交换机的总体健康状态 switch:admin> switchstatus...

css之 斜线

方案一 .x { border: solid 1px red; width: 100px; height: 100px; position: relative; background-color: transparent;...