Blogger Information
Blog 16
fans 0
comment 0
visits 13235
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
盒模型的基本设置与排版
小雨丶
Original
933 people have browsed it

盒模型

  1. box-sizing:content-box;//w3c标准盒子,padding,border不计算在盒子宽高中;
  2. box-sizing:border-box;//IE/怪异盒子,padding,border计算在盒子宽高中
  3. 高度最好是不要直接设置数值,让内容撑开;
  4. 超出隐藏:overflow:hidden;//visible默认显示
  5. 超出显示滚动条:overflowscrolloverflow:auto;//常用overflow:auto;
  6. 文档流:默认布局方式;
  7. 最小高度:min-height:;
  8. 最大高度:max-height:;
margin/padding
  1. margin外边距,不会对盒子进行填充,在盒子的外部;
  2. padding内边距,对盒子进行填充,在border的里面;
  3. 在浏览器中,标签自带margin/padding,一般在写之前要清空,*{margin:0;padding:0}
居中
水平居中
  1. 行内/行内块元素水平居中
  2. text-align:center;
  3. 块元素的水平居中
  4. margin: 0 auto;
垂直居中
  1. 行内元素:line-height:父元素高度值;
  2. 块元素:
  3. - 父元素不要设置高度,用padding上下值来填充使其居中;
水平垂直居中

1.行内

text-align:center;
line-height:xx;

2.padding

数值计算

3.定位

父级:
position:relative;
子级:
position:absolute;
left:0;
right:0;
bottom:0;
top:0;
margin:auto;

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post