HTML---CSS字体,文本,背景和边框属性

css字体属性

font-family 规定元素的字体系列
font-size 设置字体的尺寸
font-style 设置字体的风格
font-weight 设置字体的粗细
color 设置字体的颜色


css文本属性

text-indent 首行缩进
text-align 文本对齐 left center right justify(两端对齐)
word-spacing 字间隔
letter-spacing 字符间隔
text-transform 字符转换 none uppercase(大写) lowercase(小写) capitalize(首字母大写)
text-decoration 文本装饰 none underline overline line-through blink(闪烁)
white-space 空白处理 nowrap(强制不换行) normal(默认)


背景属性

background-color 背景颜色
background-image 背景图片
background-repeat 背景重复 repeat(默认) repeat-x(x轴平铺) repeat-y(Y轴平铺) no-repeat(不平铺)
background-position 背景定位
[left center(左中) ,center center(居中)] 相对定位
(横坐标,纵坐标) 绝对定位
background-attachment 背景滚动 fixed(固定) scroll(默认)


边框属性

border-style/color/width 总边框风格/颜色/厚度
border-left-style/color/width 左边框风格/颜色/厚度
border-right-style/color/width 右边框风格/颜色/厚度
border-top-style/color/width 上边框风格/颜色/厚度
border-bottom-style/color/width 下边框风格/颜色/厚度


你可能感兴趣的:(HTML)