Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to have two columns of 50% width space, and avoid floats. So i thought using display:inline-block.

When the elements add to 99% width (eg 50%, 49%, http://jsfiddle.net/XCDsu/2/ ) it works as expected.

When using 100% width (eg 50%, 50%, http://jsfiddle.net/XCDsu/3/ ) the second column breaks to the second line.

Why is that?

share|improve this question

5 Answers

up vote 27 down vote accepted

It is because display:inline-block takes into account white-space in the html. If you remove the white-space between the div's it works as expected. Live Example: http://jsfiddle.net/XCDsu/4/

<div id="col1">content</div><div id="col2">content</div>
share|improve this answer
2  
oh god thank you, felt like I was taking crazy pills – lostinplace May 13 '12 at 16:48
It still won't work in IE7, though. Any ideas how to fix it there? Currently I make the elements of a fixed height (they are two buttons) and position them absolute with the left one having right: 50% and the right one having left: 50%. Not very elegant but works in every browser. :/ – panzi Jun 6 '12 at 21:23
@panzi My suggestion below will solve your IE7 woes, and wont require you to remove whitespace from your HTML, which is a pain, and hard to eradicate from dynamic situations without a post-processor which costs more CPU-time for marginal bandwidth savings. – Replete Jul 24 '12 at 17:35
@Replete It's generated in JavaScript, so it's easy to prevent the white spaces. However, the layout changed so that I don't have such columns anyway. – panzi Jul 26 '12 at 14:33

inline and inline-block elements are affected by whitespace in the HTML.

The simplest way to fix your problem is to remove the whitespace between </div> and <div id="col2">, see: http://jsfiddle.net/XCDsu/15/

There are other possible solutions, see: bikeshedding CSS3 property alternative?

share|improve this answer

This method works correctly IE7+ and all major browsers, it's been tried and tested in a number of complex viewport-based web applications.

<style>
    .container { 
    font-size:0}

    .column { 
    display: inline-block; 
    width: 50%; 
    font-size:16px; /* or whatever would normally be inherited
    (twitter bootstrap resets body font-size to 13px, for example) */}

    /* Serve this to IE7 _only_: */
    .ie7 .column {
    display:inline; 
    zoom:1}

</style>

<div class="container">
  <div class="column">text that can wrap</div>
  <div class="column">text that can wrap</div>
</div>

Live demo: http://jsbin.com/openuh/2

The only downside to this method, is when relying on body {font-size:??px} as basis for em/%-based font-sizing.

IE7 specific CSS could be served using IE's Conditional comments

share|improve this answer

You can remove the whitespaces via css using white-space so you can keep your pretty HTML layout. Don't forget to set the white-space back to normal again if you want your text to wrap inside the columns.

Tested in IE9, Chrome 18, FF 12

.container { white-space: nowrap; }
.column { display: inline-block; width: 50%; white-space: normal; }

<div class="container">
  <div class="column">text that can wrap</div>
  <div class="column">text that can wrap</div>
</div>
share|improve this answer
Using no-wrap makes the columns sit next to each other, but creates an undesirable padding, breaking out of the container. My suggestion below does not have this issue, here's a live example: jsbin.com/openuh/2 – Replete Jul 24 '12 at 17:10

Have a look at this fiddle. Essentially, I removed the space between the two divs.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.