美文网首页
前端面试

前端面试

作者: zzj_alpaca | 来源:发表于2017-07-29 10:44 被阅读0次

怎样让一个不知道大小的盒子居中

.box {
            width: 300px;
            height: 200px;
            background-color: red;
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            margin: auto;
        }

原理是:让未定义宽高的div上下左右距离都为0.然后给一个margin自适应。可以想象成一个盒子,给了四个方向的相同的力,这样就会形成一种相对的均衡力量让其停留在中间位置了。

  • 利用css3属性
.box {
            width: 300px;
            height: 200px;
            background-color: red;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }
<style>
        .box {
            width: 800px;
            height: 500px;
            border: 1px solid #c35;
            margin: 50px auto;
            display: flex;
            background: #ccc;
            justify-content: center;
            align-items: center;
        }

        .inner_box {
            width: 290px;
            height: 300px;
            background: #c35;
        }
    </style>
</head>

<body>
    <div class="box">
        <div class="inner_box"></div>
    </div>
</body>

自己封装的插件

vue

手机适配

响应式页面

回调函数的原理

相关文章

网友评论

      本文标题:前端面试

      本文链接:https://www.haomeiwen.com/subject/rgbqlxtx.html