盒模型有三种属性
边框:border 填充:podding 边界:margin
分别都有四个方向:top,bottom,left,right
- 边框有三个值:粗细、样式和颜色
例:border:2px solid red; - border-style(边框样式)常见样式有:
dashed(虚线)dotted(点线)solid(实线)。
书写“值”的技巧
- 属性分为上、右、下、左。代码可如下简写:
div{margin:20px 10px 15px 30px;} - 如果上右下左的属性都为10px;可以这么写:
div{ margin:10px;} - 如果上下属性一样为10px,左右属性一样为20px,可以这么写:
div{ margin:10px 20px;}