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

I've got a fixed-width div with two buttons in it. If the labels of the buttons are too long, they wrap--one button stays on the first line, and the next button follows underneath it instead of adjacent to it.

How can I force the div to expand so that both buttons are on one line?

share|improve this question
I can't even login with my OpenID to doctype, so methinks the question best belongs here. – Stefan Kendall Nov 9 '09 at 19:27
2  
@nicholaides I agree it would work on doctype but I think it's totally legit on SO as well. – TM. Mar 8 '11 at 20:30
@Flimzy I stand corrected. – nicholaides Jul 16 '12 at 21:52

4 Answers

Try white-space:nowrap;

share|improve this answer
2  
This worked for me. Thanks. – Flimzy Jul 16 '12 at 17:06

A combination of both float: left; white-space:nowrap; worked for me.

Each of them independently didn't accomplish the desired result.

share|improve this answer

If you don't care about a minimum width for the div and really just don't want the div to expand across the whole container, you can float it left -- floated divs by default expand to support their contents, like so:

<form>
    <div style="float: left; background-color: blue">
        <input type="button" name="blah" value="lots and lots of characters"/>
        <input type="button" name="blah2" value="some characters"/>
    </div>
</form>
share|improve this answer

If your div has a fixed-width it shouldn't expand, because you've fixed its width. However, modern browsers support a min-width CSS property.

You can emulate the min-width property in old IE browsers by using CSS expressions or by using auto width and having a spacer object in the container. This solution isn't elegant but may do the trick:

<div id="container" style="float: left">
  <div id="spacer" style="height: 1px; width: 300px"></div>
  <button>Button 1 text</button>
  <button>Button 2 text</button>
</div>
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.