<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>文本样式</title>
<style type="text/css">
span {
color: blue;
font-size: 30px;
font-family: roman;
/*切换字体*/
line-height: 50px;
/*行高*/
letter-spacing: 10px;
/*字符间隙*/
text-decoration: overline;
/*字符修饰:overline 上划线 ;underline 下划线;line-through 从中间穿过*/
text-transform: uppercase;
/*字符转换:lowercase :小写 uppercase : 大写*/
}
</style>
</head>
<body>
<pre>
<span>JingYeSi</span>
<span>床前明月光, 疑是地上霜。</span>
<span>举头望明月, 低头思故乡。</span>
</pre>
</pre>
</body>
</html>
css文本
最新推荐文章于 2024-09-19 15:03:56 发布