Text文本属性:
1.颜色 color
color:red
2、文本缩进 text-indent
属性值 数字+px: text-indent:10px;
3、文本修饰 text-decoration
属性值:underline 下划线 none 默认值没有任何线 overline 上划线
4、文本的对齐方式 text-align
属性值 left right center justify(两端对齐)
width 宽 height 高 属性值都是像素
任何一个标签都是以方格的形式呈现,我们需要手动调节大小样式。
背景 background
1、背景颜色 background-color:属性值 是颜色
2、背景图片 background-image:url(”路径”);
3、背景大小 baackground-size:x y;是水平上的大小 y是垂直方向的大小。都是像素。
4、背景平铺:background-repeat:
5、属性值 默认是平铺的 repeat
不平铺 no-repeat
仅仅水平方向平铺 repeat-x
仅仅垂直方向平铺 repeat-y