css文本修饰
一、文本修饰
属性 | 描述 | 使用 |
---|---|---|
color | 设置字体颜色 | color: #ff1237 |
text-align | 设置文本水平对齐 | text-align: center 水平居中text-align: right 右对齐text-align: justify 两端对齐 |
vertical-align | 设置本文垂直对齐 | vertical-align: top 按当前行最高元素顶部对齐vertical-align: middle 将当前元素放在父元素的垂直居中位置vertical-align: bottom 按当前行最低元素底部对齐 |
text-decoration | 设置文本装饰 | text-decoration: none 不进行任何装饰,可用来清除a标签的下划线text-decoration: overline 设置上划线text-decoration: line-through 设置中划线(删除线)text-decoration: underline 设置下划线 |
text-transform | 设置文本转换 | text-transform: uppercase 文本中所有字母转大写text-transform: lowercase 文本中所有字母转小写text-transform: capitalize 文本中单词首字母大写 |
text-indent | 设置首行缩进 | text-indent: 50px |
letter-spacing | 设置文本字符间距 | letter-spacing: 15px |
word-spacing | 设置单词间距 | word-spacing: 30px |
text-shadow | 设置文本倒影 | 语法如下: text-shadow: h-distance v-distance blur-distance color 如: text-shadow: 1px 2px 3px red; 设置倒影距离文字水平距离1px,垂直2px,模糊距离3px(可不设置),倒影颜色为红色 |
二、字体修饰
属性 | 描述 | 使用 |
---|---|---|
font-family | 设置字体家族,常用的字体家族如:常用字体家族 | font-family:"Times New Roman", Times, serif; |
font-style | 设置字体样式 | font-style: normal 正常 font-style: italic 斜体 |
font-szie | 设置字体大小 | font-size: 36px font-sze: 1.5em font-size: 50% |
font-weight | 设置字体粗细 | font-weight: bolder 加粗 font-weight: 700 设置粗度为700 |
原文地址:https://blog.csdn.net/weixin_74261199/article/details/142311712
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!