css05 字体以及行间距

时间:2023-01-06 16:06:10

<head>
<meta charset="utf-8">
<title>无标题文档</title>
<style>
#box{width:300px;border:1px solid #000; font:14px/30px "宋体"; color:red;letter-spacing:5px;}
/*
color 文字颜色
text-indent 首行缩进 (1em=1个文字大小)
text-align 文本对齐方式(left/center/right)
text-decoration 文本修饰(underline下划线/line-through 删除线/overline 上划线/none)
letter-spacing 字母间距(字间距)
*/
</style>
</head>
<body>
<div id="box">页面基本结构页面基本结构</div>
</body>
</html>