dongshao9106 2013-12-19 05:48 采纳率: 100%
浏览 54
已采纳

如何将网站对齐屏幕顶部/底部和右/左中心?

I want to have the effect like dropbox:https://www.dropbox.com/ where my website is centered in the exact middle of the page.

  • 写回答

9条回答 默认 最新

  • douchuitang0331 2013-12-19 06:02
    关注

    Achieving this effect is way more complicated than it should be. Here's a bare-bones working example: http://jsfiddle.net/jshado1/UEsYM/

    html, body { height: 100%; } // needed for vertical centre
    
    html { width: 100%; } // needed for horizontal centre
    
    body {
        display: table; // needed for vertical centre
        margin: 0 auto; // needed for horizontal centre
        width: 50%; // needed for horizontal centre
    }
    
    .main-container {
        background-color: #eee;
        display: table-cell; // needed for vertical centre
        height: 100%; // needed for vertical centre
        // overflow: auto; // <- probably a good idea
        vertical-align: middle; // needed for vertical centre
        width: 100%; // needed for horizontal centre
    }
    
    .container {
        background-color: #ccc;
        padding: 20px;
    }
    

    screenshot from JSFiddle example

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(8条)

报告相同问题?

悬赏问题

  • ¥40 复杂的限制性的商函数处理
  • ¥15 程序不包含适用于入口点的静态Main方法
  • ¥15 素材场景中光线烘焙后灯光失效
  • ¥15 请教一下各位,为什么我这个没有实现模拟点击
  • ¥15 执行 virtuoso 命令后,界面没有,cadence 启动不起来
  • ¥50 comfyui下连接animatediff节点生成视频质量非常差的原因
  • ¥20 有关区间dp的问题求解
  • ¥15 多电路系统共用电源的串扰问题
  • ¥15 slam rangenet++配置
  • ¥15 有没有研究水声通信方面的帮我改俩matlab代码