I have a flexbox with packed content. How to shrink a flexbox to its content? The fundamental problem I'm trying to solve is centering the flexbox. This image describes my problem:
How can I achieve this goal? Can this be achieved with pure CSS? I don't know in advance whether Flexbox will wrap to 1, 2 or 3 columns. The width of the element is known. The height would preferably be unknown, but I could decide on a constant height if that was easier.
is neither width:min-content
, width:max-content
, width:fit-content
nor inline-flex< /code> seems to solve the problem.
JS Fiddle: https://jsfiddle.net/oznts5bv/
.container { display:flex; flex-wrap:wrap; border:1px dashed magenta; } .container div { width:100px; height:60px; border:1px solid black; }
<div class="container"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div> </div>
Two examples were created: using
display: flex;
anddisplay: grid;
. The second option may suit you better: