Quantcast
Channel: Active questions tagged flexbox - Stack Overflow
Viewing all articles
Browse latest Browse all 1305

flexbox: max-gap between elements [duplicate]

$
0
0

Hi: I have the following problem:

I have this vertical flexbox which should be able to be resized by adding space between the items, but only up to a certain point.

It has

.my-flexbox{   margin-top: auto;   margin-bottom: auto;   height: fit-content;}

So the spacing between items should be at least 1em, and at most 2em. After that point, if more space needs to be filled, it should use the margins (which are set to auto) instead

So basically it should have (and its max-height

The only solution I am seeing right now is to add "spacing divs":

.my-flexbox>*{   flex-grow: 0;}.my-flexbox>:not(:first-child)::after{   content: '';   min-width: 1em;   max-width: 2em;   flex-grow: 1;}

But I was wondering if there was a more elegant solution

EDIT: Here is a minimal reproducible example html:

<html><body><div id="container" style="height:100%;display:flex-column;"><div id="other_stuff" style="height:2cm"></div><ul class="my-flexbox"><li> . . . </li><li> . . . </li><li> . . . </li></ul></div>     </body></html> 

Expected behaviour when the container's height grows (eg when the window's height is changed)

  1. the spacing between the li's grow until it reaches 2em
  2. The spacing around .my-flexbox grows

Viewing all articles
Browse latest Browse all 1305

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>