a标签去掉点击后的颜色和下划线 html超链接更改或取消颜色代码

分类:站长 时间:2021-08-21 00:41 浏览:538390
概述
a标签去掉点击后的颜色和下划线,html超链接更改颜色或取消颜色代码 去掉点击a标签下划线代码/*包含以下五种的链接*/ a {     text-decoration: none; } /*正常的未被访问过的链接*/ a:link {     text-decoration: none; }
内容

a标签去掉点击后的颜色和下划线,html超链接更改颜色或取消颜色代码 去掉点击a标签下划线代码


/*包含以下五种的链接*/
a {
    text-decoration: none;
}

/*正常的未被访问过的链接*/
a:link {
    text-decoration: none;
}

/*已经访问过的链接*/
a:visited {
    text-decoration: none;
}

/*鼠标划过(停留)的链接*/
a:hover {
    text-decoration: none;
}

/* 正在点击的链接,鼠标在元素上按下还没有松开*/
a:active {
    text-decoration: none;
}

/* 获得焦点的时候 鼠标松开时显示的颜色*/
a:focus {
    text-decoration: none;
}

/* 可一次性设置样式*/
a:hover, a:visited, a:link, a:active {
    color:  black;
    text-decoration: none;
}


评论
  • 猎伞底部波浪
  • 猎伞底部波浪
  • 猎伞底部波浪
  • 猎伞底部波浪

我的

足迹

投稿

反馈

客服

猎伞官方客服

客服QQ:104****84 (点击直接对话)

客服电话:400****16(查看完整电话)

客服邮箱:service@liesan.com

管理仅处理交易投诉、举报、帐号、资金等平台使用问题;
商品问题请咨询各商品详情页面中显示的商家客服QQ。

正常模式精简模式

返回顶部