《CSS实战手册》2024版:第二章 - 文本美化技巧
发表时间: 2023-12-02 23:06
文本的字体、大小、颜色和样式
CSS 美化文本可以通过以下方式实现:
以下是一些示例代码:
/* 设置字体样式 */p {font-family: Arial, sans-serif;}/* 设置字体大小 */h1 {font-size: 24px;}/* 设置字体粗细 */strong {font-weight: bold;}/* 设置字体样式 */em {font-style: italic;}/* 设置文本对齐 */ul {text-align: left;}/* 设置文本装饰 */a {text-decoration: underline;}/* 设置文本颜色 */h2 {color: #FF0000;}/* 设置文字阴影 */h3 {text-shadow: 2px 2px 2px #000;}/* 设置文字转换 */p {text-transform: capitalize;}/* 设置文字间距 */p {letter-spacing: 1px;}/* 设置文字行高 */p {line-height: 1.5;}
CSS文本的对齐、缩进和行高可以通过以下属性进行设置:
p { text-align: center; }
p { text-indent: 2em; }
p { line-height: 1.5; }
CSS文本的装饰和转换可以通过以下属性进行设置:
p { text-decoration: underline; }
h1 { text-transform: uppercase; }
p { text-shadow: 2px 2px 4px #000000; }