Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to evenly distribute elements in a div next to each other?

Tags:

css

This is meant for a menu.
For example I have a div element with 3 spans in it, all of which have some margin, max-width and float (left or right).
It is positioned starting from the left side and goes like this:
[[span1][span2][span3] - lots of free space here].
I want to make it even out like this:
[[span1] - space - [span2] - space - [span3]]
How can I do this using CSS? I kinda doubt it is not possible.
Note that I want it to keep the same style when I add or remove a menu item.
HTML:

<div id="menu">     <span class="menuitem"></span>     <span class="menuitem"></span>     <span class="menuitem"></span> </div> 

CSS:

#menu {     ...     width:800px; } .menuitem {     display:block;     float:left;     margin-left:25px;     position:relative;     min-height:35px;     max-width:125px;     padding-bottom:10px;     text-align:center; } 
like image 999
jurchiks Avatar asked Aug 30 '11 14:08

jurchiks


People also ask

How do I align a div element next to each other?

With CSS properties, you can easily put two <div> next to each other in HTML. Use the CSS property float to achieve this. With that, add height:100px and set margin.

How do you distribute elements evenly CSS?

The "space-evenly" value for the justify-content property distributes the space between items evenly. It is similar to space-around but provides equal instead of half-sized space on the edges. Can be used in both CSS flexbox & grid.

How do I put two divs next to each other without using Flex?

The most common way to place two divs side by side is by using inline-block css property. The inline-block property on the parent placed the two divs side by side and as this is inline-block the text-align feature worked here just like an inline element does.


2 Answers

In the 'old days' you'd use a table and your menu items would be evenly spaced without having to explicitly state the width for the number of items.

If it wasn't for IE 6 and 7 (if that is of concern) then you can do the same in CSS.

<div class="demo">     <span>Span 1</span>     <span>Span 2</span>     <span>Span 3</span> </div> 

CSS:

div.demo {     display: table;     width: 100%;     table-layout: fixed;    /* For cells of equal size */ } div.demo span {     display: table-cell;     text-align: center; } 

Without having to adjust for the number of items.

Example without table-layout:fixed - the cells are evenly distributed across the full width, but they are not necessarily of equal size since their width is determined by their contents.

  • http://jsfiddle.net/w3dx/ULQwf/

Example with table-layout:fixed - the cells are of equal size, regardless of their contents. (Thanks to @DavidHerse in comments for this addition.)

  • http://jsfiddle.net/kqHWM/

If you want the first and last menu elements to be left and right justified, then you can add the following CSS:

div.demo span:first-child {     text-align: left; } div.demo span:last-child {     text-align: right; } 
like image 184
MrWhite Avatar answered Sep 27 '22 20:09

MrWhite


You can use justify.

This is similar to the other answers, except that the left and rightmost elements will be at the edges instead of being equally spaced - [a...b...c instead of .a..b..c.]

<div class="menu">     <span>1</span>     <span>2</span>     <span>3</span> </div>  <style> .menu {text-align:justify;} .menu:after { content:' '; display:inline-block; width: 100%; height: 0 } .menu > span {display:inline-block}  </style> 

One gotcha is that you must leave spaces in between each element. [See the fiddle.]

There are two reasons to set the menu items to inline-block:

  1. If the element is by default a block level item (such as an <li>) the display must be set to inline or inline-block to stay in the same line.
  2. If the element has more than one word (<span>click here</span>), each word will be distributed evenly when set to inline, but only the elements will be distributed when set to inline-block.

See the JSFiddle

EDIT:
Now that flexbox has wide support (all non-IE, and IE 10+), there is a "better way".
Assuming the same element structure as above, all you need is:

<style>     .menu { display: flex; justify-content: space-between; } </style> 

If you want the outer elements to be spaced as well, just switch space-between to space-around.
See the JSFiddle

like image 37
SamGoody Avatar answered Sep 27 '22 19:09

SamGoody