04.CSS3背景与边框相关样式
2018-01-26 本文已影响0人
Ching_Lee
1.与背景相关的新增属性
background-clip:border-box(背景范围:整个边框及内部),padding-box(背景范围:内容区及内边距),content-box(内容区);
background-origin:控制背景图片的起始绘制位置
border-box:从边框开始绘制
padding-box:从内边距开始绘制
content-box:从内容区开始绘制
2.圆角边框
border-radius: 20px(左上角) 30px(右上角) 10px(右下角) 50px(左下角)
border-radius:10px(上下左右一样)