css_sduty/11_CSS常用文本属性/06_font-size详细.html

40 lines
1.1 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>06_font-size详细</title>
<style>
/* 字体设计时 x下沿是基线基线靠下字体偏下 */
div {
font-size: 30px;
background-color: skyblue;
}
.zyjblogs1 {
font-family: "YaHei Monaco Hybird";
}
.zyjblogs2 {
font-family: "宋体";
}
.zyjblogs3 {
font-family: "微软雅黑";
}
.zyjblogs4 {
}
.zyjblogs5 {
}
.zyjblogs6 {
}
</style>
</head>
<body>
<div class="zyjblogs1">x逝水无痕 zyjblogs1</div><br>
<div class="zyjblogs2">x逝水无痕 zyjblogs2</div><br>
<div class="zyjblogs3">x逝水无痕 zyjblogs3</div><br>
<div class="zyjblogs4">x逝水无痕 zyjblogs4</div><br>
<div class="zyjblogs5">x逝水无痕 zyjblogs5</div><br>
<div class="zyjblogs6">x逝水无痕 zyjblogs6</div><br>
</body>
</html>