css好看的文字样式
时间: 2023-07-16 22:15:07 浏览: 272
以下是一些常见的 CSS 文字样式:
1. 字体样式:
```css
font-family: Arial, sans-serif; /* 设置字体 */
font-size: 16px; /* 设置字体大小 */
font-weight: bold; /* 设置字体粗细 */
font-style: italic; /* 设置字体样式 */
```
2. 文本颜色和背景色:
```css
color: #333; /* 设置文本颜色 */
background-color: #f5f5f5; /* 设置背景颜色 */
```
3. 文本对齐方式:
```css
text-align: center; /* 居中对齐 */
text-align: left; /* 左对齐 */
text-align: right; /* 右对齐 */
```
4. 文本装饰:
```css
text-decoration: underline; /* 带下划线 */
text-decoration: line-through; /* 带删除线 */
text-decoration: none; /* 不带装饰 */
```
5. 行高:
```css
line-height: 1.5; /* 设置行高,可以是数字或者百分比 */
```
6. 字母间距和单词间距:
```css
letter-spacing: 1px; /* 设置字母间距 */
word-spacing: 5px; /* 设置单词间距 */
```
7. 文字阴影:
```css
text-shadow: 1px 1px 1px #ccc; /* 设置文字阴影,可以设置位置和颜色 */
```
以上是一些常用的 CSS 文字样式,你可以根据自己的需要进行调整。
阅读全文