WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何从 HTML 中的链接中删除下划线

主题:HTML / CSS上一页|下一页

答案:使用 CSS text-decoration 属性

您可以简单地使用值为 none 的 CSS text-decoration 属性从链接或超链接中删除下划线。 让我们试试下面的例子,看看它是如何工作的:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Remove Underline from Link Using CSS</title>
<style>
    a:link, a:visited, a:hover, a:active {
        text-decoration: none; 
    }
</style>
</head>
<body>
    <p><a href="http://www.qyoo.cn/">Click Me</a></p>
</body>
</html>

FAQ 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements