一.背景 background
背景颜色:background-color : red ; ( 简写 :background : red ; )
背景图片:background-image :url ( “ 路径” ); ( 简写 :background :url )
背景平铺:
1. 平铺 :浏览器默认的
2. 不平铺 : background-repeat : no-repeat ;
background-size : 100% 100% ; ( 第一个X轴的值,第二个Y轴的值 )
3.平铺X轴或Y轴 :background-repeat :repeat-X ;
repeat-Y ;
背景大小:
可以设置具体大小
background-size :200px 200px ; auto 自适应 ( 一般做属性值 )
背景位置:
background-position ( 坐标轴,向下为正,向右为整数 )
background-position : 100px 100px ; ( 具体数字 ,百分比 ,英文——top left right center )
边框 border
border:blue 1px dashed ;
边框圆角 :
border-radius :px % ( 值可以是具体的数字,百分比 )
*浏览器默认字体大小font-size 16px ;谷歌最小字体10px ; 其他浏览器 12px