没有宽度的元素的CSS边距

时间:2016-05-02 01:24:39

标签: html css centering

我需要将一个没有宽度的div元素居中(它的宽度来自内部div。

<html>
<head>
    <title></title>
    <style type="text/css">
    .outer {
        padding: 10px;
        /*margin: auto; (doesn´t work)*/
        background-color: #000;
        display: inline-block;
    }
    .inner {
        width: 400px;
        height: 400px;
        text-align: center;
        background-color: #CCC;
    }
    </style>
</head>
<body>

    <div class="outer">
        <div class="inner"></div>
    </div>
</body>
</html>

如何在不设置宽度的情况下解决此问题?

2 个答案:

答案 0 :(得分:0)

你可以在身上或.outer

这将使您的div水平和垂直居中对齐。

position: absolute; 
top:50%;
left: 50%;
transform: translate3d(-50%,-50%, 0);

答案 1 :(得分:-1)

对于水平居中,假设父亲是亲戚;

   .outer {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        padding: 10px;
        background-color: #000;
        display: inline-block;
    }