42 lines
1.3 KiB
HTML
42 lines
1.3 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>03_文本修饰</title>
|
|
<style>
|
|
.zyjblogs1 {
|
|
/* 上划的绿色虚线 */
|
|
text-decoration: overline dotted green ;
|
|
}
|
|
.zyjblogs2 {
|
|
/* 下划线的红色波浪线 */
|
|
text-decoration: underline wavy red;
|
|
}
|
|
.zyjblogs3 {
|
|
/* 删除线 */
|
|
text-decoration: line-through;
|
|
}
|
|
.zyjblogs4 {
|
|
text-decoration: none;
|
|
}
|
|
.zyjblogs5 {
|
|
text-decoration: none;
|
|
}
|
|
a,ins,del {
|
|
/* 没有各种线 */
|
|
text-decoration: none;
|
|
font-size: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="zyjblogs1">Lorem ipsum dolor sit amet consectetur. zyjblogs1</div><br>
|
|
<div class="zyjblogs2">Lorem ipsum dolor sit amet consectetur. zyjblogs2</div><br>
|
|
<div class="zyjblogs3">Lorem ipsum dolor sit amet consectetur. zyjblogs3</div><br>
|
|
<div class="zyjblogs4">Lorem ipsum dolor sit amet consectetur. zyjblogs4</a><br>
|
|
<a class="zyjblogs5" href="https://hexo.zyjblogs.cn">逝水无痕博客</div><br>
|
|
<ins class="zyjblogs6">Lorem ipsum dolor sit amet consectetur. zyjblogs6</ins><br>
|
|
<del class="zyjblogs7">del</del><br>
|
|
</body>
|
|
</html> |