一聚教程网:一个值得你收藏的教程网站

热门教程

css学习笔记之CSS缩写笔记

时间:2022-06-25 08:59:49 编辑:袖梨 来源:一聚教程网


字体

font:font-style | font-variant | font-weight | font-size | line-height | font-family ;

Margin & Padding
magin: magin-top | margin-right | margin-bottom | margin-left;
P {magin:20px;}
P {magin:20px 10px;}
P {magin:20px 10px 100px;} 上边距20px,左右10px,下边距100px


边框

border:border-width | border-style | color

border-top:border-width | border-style | color
border_right:border-width | border-style | color
border-bottom:border-width | border-style | color
border-left:border-width | border-style | color


border-width: top | right | bottom | left
border-color: top | right | bottom | left
border-style: top | right | bottom | left

支持1-4个参数的缩写


List 列表缩写
list-style:list-style-type | list-style-position | list-style-image


Background 缩写

background: background-color | background-image |background-repeat | background-attachment | background-position

color 缩写

颜色
16进制的色彩值,如果每两位的值相同,可以缩写一半,例如:
#000000可以缩写为#000;#336699可以缩写为#369;

盒尺寸

通常有下面四种书写方法:

•property:value1; 表示所有边都是一个值value1;
•property:value1 value2; 表示top和bottom的值是value1,right和left的值是value2
•property:value1 value2 value3; 表示top的值是value1,right和left的值是value2,bottom的值是value3
•property:value1 value2 value3 value4; 四个值依次表示top,right,bottom,left

方便的记忆方法是顺时针,上右下左。具体应用在margin和padding的

例子如下:

margin:1em 0 2em 0.5em;

CSS 内补距(CSS padding):


padding-top:5px; padding-bottom:10px; padding-left:15px; padding-right:20px;

即可缩写为

padding:5px 20px 10px 15px; 或padding-top:5px; padding-bottom:5px; padding-left:10px; padding-right:10px;缩写为padding:5px 10px;

CSS 外边距(CSS margin):

margin-top:5px; margin-bottom:10px; margin-left:15px; margin-right:20px;

即可缩写为

margin:5px 20px 10px 15px; 或margin-top:5px; margin-bottom:5px; margin-left:10px; margin-right:10px;缩写为margin:5px 10px;

热门栏目