前言:本人是新生小白,如有错误之处欢迎指出
首先第一点我们要知道什么是text-decoration 属性
前言:本人是新生小白,如有错误之处欢迎指出
我们先写一个基础框架
<!DOCTYPE html>
<html>
<head>
<title>overflow</title>
</head>
<body>
</body>
</html>
接下来进行简单介绍
text-decoration 属性是指规定添加到文本的修饰
text-decoration 属性是以下三种属性的简写:
- text-decoration-line
- text-decoration-color
- text-decoration-style
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>text-decoration</title>
<style>
h1.under {
text-decoration: underline;
}
h1.over {
text-decoration: overline;
}
p.line {
text-decoration: line-through;
}
p.blink {
text-decoration: blink;
}
a.none {
text-decoration: none;
}
p.underover {
text-decoration: underline overline;
}
</style>
</head>
<body>
<h1 class="under">下划线</h1>
<p class="line">删除线</p>
<p class="blink">闪烁效果,但浏览器不会显示效果</p>
<h1 class="over">下划线</h1>
<p>这是一个 <a class="none" href="#">链接</a>,默认有下划线的</p>
<p class="underover">上划线与下划线</p>
</body>
</html>