• 企业400电话
  • 网络优化推广
  • AI电话机器人
  • 呼叫中心
  • 全 部 栏 目

    网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    详解HTML5中垂直上下居中的解决方案
    POST TIME:2021-10-16 23:49

    在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; 属性。

    看代码

     .container-horization-vertical {
        position: relative;
        width: 100%;
        height: 200px;
        background: deepskyblue;
        margin-bottom: 20px;
    }
            
    .container-horization-vertical-item {
        position: absolute;
        width: 150px;
        height: 80px;
        background: yellow;
        line-height: 80px;
        text-align: center;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }

    小结: 这种方案在解决一些不算复杂的页面布局时还是很不错的,可以适配任何界面以及几乎所有的浏览器。但对于十分复杂的页面可能会需要其他的解决方案,但是从这个思路出发也可以得到启示

    以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

  • 相关文章
  • 

    关于我们 | 付款方式 | 荣誉资质 | 业务提交 | 代理合作


    © 2016-2020 巨人网络通讯

    时间:9:00-21:00 (节假日不休)

    地址:江苏信息产业基地11号楼四层

    《增值电信业务经营许可证》 苏B2-20120278

    X

    截屏,微信识别二维码

    微信号:veteran88

    (点击微信号复制,添加好友)

     打开微信