标签:
多列:(对文本进行布局,像报纸那样)
column-count: 规定元素应该被分隔得列数;
column-gap:规定列之间的间距;
column-rule: 列与列之间的间隔线;
column-width:规定列的宽度;
resize:
none(无法调整)
both(调整元素的高度和宽度)
horizontal( 可调整元素的宽度 )
vertical (调整元素的高度)
inherit (这是默认值,继承父元素的resize属性值)
box-sizing:
content-box (在宽度和高度之外绘制元素的内边距和边框,设置 width和height,控制元素内容区宽度和高度)
padding-box 设置宽和高, 控制元素的内容区加内补丁区的宽度和高度border-box (从已设定的宽度和高度分别减去边框和内边距才能得到内容的宽度和高度。设置宽高,控制元素的内容区加内补丁区加边框区的宽度和高度)
inherit (从父元素继承box-sizing属性的值)
轮廓相关属性:
outline:
outline-color: 轮廓颜色
outline-style:轮廓线形
outline-width: 轮廓宽度
outline-offset: 轮廓与边框之间的距离
标签:
原文地址:http://www.cnblogs.com/jinsuo/p/5398174.html