Flamegrass
Flamegrass

Reputation: 43

How to set the flexbox width only to the content within

How can I set the width of the flexbox container to the width of the content within? Can it behave like display:inline-block, without specifying a fixed width

Fiddle

Upvotes: 2

Views: 88

Answers (1)

Cons7an7ine
Cons7an7ine

Reputation: 738

Try this

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

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

Upvotes: 2

Related Questions