如何将flexbox宽度仅设置为其中的内容

时间:2017-10-17 09:09:42

标签: css flexbox

如何将flexbox容器的宽度设置为内容的宽度?它可以表现得像{{1}},而不指定固定宽度

Fiddle

1 个答案:

答案 0 :(得分:2)

试试这个

.parent {
    width: 150px;
    height: 150px;
    background: yellow;
    text-align: center;
}

.flex {
   display: inline-flex;
    margin: auto;
    justify-content: center;
    background: blue;
}