html5中垂直排列,详解HTML5中垂直上下居中的解决⽅案在CSS中,则要吐槽⼀下,利⽤margin:0 auto;可以达到⽔平⽅向的居中,但是margin: auto 0则⽆法达到垂直⽅向的居中。
这⾥主要还是由于没有对⽗控件即控件本⾝进⾏正确的定位。直接看代码, ⾸先对⽗控件需要使⽤相对布局,之后对⼦控件需要使⽤绝对布局,并且利⽤top,和bottom属性,结合margin: auto 0;,则可以达到效果。.container-vertical { position: relative; width: 100%; height: 200px; background: deepskyblue; margin-bottom: 20px;} .container-vertical-item { position: absolute; width: 130px; height: 80px; text-align: center; background: yellow; line-height: 80px; top: 0; bottom: 0; margin: auto 0;}
垂直⽅向上居中.png
⽔平垂直⽅向居中
有了5.2的经验,我们可以尝试设置⼦控件的left和right,top,bottom属性都为0,并且margin: auto;四个⽅向上都是⾃动外边距。则可以达到这样的效果。其中需要注意的⼦控件需要必须是display: block; 属性。html span 居中
看代码.container-horization-vertical { position: relative; width: 100%; height: 200px; background: deepskyblue; margin-bottom: 20px;} .container-horization-vertical-item { position: absolute; width: 150p
x; height: 80px; background: yellow; line-height: 80px; text-align: center; top: 0; left: 0; bottom: 0; right: 0; margin: auto;}
⼩结: 这种⽅案在解决⼀些不算复杂的页⾯布局时还是很不错的,可以适配任何界⾯以及⼏乎所有的浏览器。但对于⼗分复杂的页⾯可能会需要其他的解决⽅案,但是从这个思路出发也可以得到启⽰
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持⽹页设计。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。