列表样式、盒子模型、浮动布局
列表样式:
list-style-type: upper-roman; 大写罗马数字
list-style-type:lower-alpha; 小写字母
list-style-type: none; 没有符号
list-style-type:circle; 空心圆
list-style-type: square; 实心正方形
list-style-image: url(../img/123.png); 每一个列表项添加图片
浮动布局:
float: left; 向左浮动
clear: both 清除浮动
盒子模型:
margin: 10px 20px 30px 40px; 外边距顺序:上右下左
margin: 0px auto; 居中
margin重叠现象:当两个div都没有设置浮动时,却设置了magrin,那么按照最大margin值算距离
当两个div浮动时,添加了margin,就按照margin的总和算距离
padding:10px 20px 30px 40px; 内边距顺序:上右下左
overflow: hidden; 超出隐藏
overflow: scroll; 滚动条
浙公网安备 33010602011771号