您的位置:首页 > Web前端 > CSS

通过css控制超链接不显示下划线

2013-07-24 13:31 465 查看
“页面属性”——“链接”——“下划线样式”——“始终无下划线”


<style type="text/css">
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
</style>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: