Search code examples
htmlcssjustify

Justify elements with fix space (variable width)


I have a container with a variable number of elements in it. The elements should be justified but with a fix space between (e.g. 20px). That means the width of every element has to adapt.

For example this:

HTML

<div class="container">
    <div>
        <img src="...">
    </div>
    <div>
        <img src="...">
    </div>
    <div>
        <img src="...">
    </div>
</div>

CSS

div.container {
    text-align: justify;
}

div.container div {
    display: inline-block;
    margin-right: 20px;
}

div.container div img {
    width: 100%;
}

At the end it should look like this (this picture shows two examples: 2 elements and 3 elements; the width is dynamic but the space fix [20px]):

picture showing elements

It should work with a different number of child elements.

Is there a professional way to do this with CSS?

EDIT: I should mention that this fix space is a %-value!


Solution

  • If using Flexbox is an option, you could add flex: 1 to the flex items and also a margin property with a fixed value as follows:

    EXAMPLE HERE

    div.container { display: flex; }
    
    div.container div {
      height: 50px; /* Just for demo */
      flex: 1;
      margin-left: 20px;
    }
    
    div.container :first-child { margin-left: 0; }
    

    Actually, flex: 1 is a shorthand of flex-grow: 1; in this case.