font-family 字体i类型
font-size 字体大小
color 字体颜色
font-weight 字体粗细
font-style 字体倾斜效果 normal italic oblique
text-decoration 定义修实现 可以定义下划线underline 上划线overline 删除线等样式line-through
font-variant 定义字体的变体 取值 normal small-caps 一般不使用
text-transform定义大小写字体 全部大写uppercase 全部小写lowercase 首字母大写capitalize
text-align 文本对齐方式 left center right
点击查看代码
p{
font-family: 'Courier New', Courier, monospace;
font-size: 22px;/* 也可以使用 xx-small x-small small larfe x-large 等官方字体*/
color: red;
font-weight: 400;
font-style: oblique;
text-decoration: none;
font-variant: normal;
text-transform: capitalize;
}