CSS text-decoration 属性

在这里插入图片描述

<html>
<head>
<style type="text/css">
h1 {text-decoration: overline}
h2 {text-decoration: line-through}
h3 {text-decoration: underline}
h4 {text-decoration:blink}
a {text-decoration: none}
</style>
</head>

<body>
<h1>这是标题 1</h1>
<h2>这是标题 2</h2>
<h3>这是标题 3</h3>
<h4>这是标题 4</h4>
<p><a href="http://www.4399.com">这是一个链接</a></p>
</body>

</html>

在这里插入图片描述

posted @ 2022-11-21 18:53  TwcatL_tree  阅读(0)  评论(0编辑  收藏  举报