up vote 29 down vote favorite
5
share [g+] share [fb]

Given this HTML:

<div>foo</div><div>bar</div><div>baz</div>

How do you make them display inline like this:

foo bar baz

not like this:

foo
bar
baz

link|improve this question

72% accept rate
feedback

14 Answers

up vote 30 down vote accepted

That's something else then:

<style type="text/css">
div.inline { float:left; }
.clearBoth { clear:both; }
</style>
<div class="inline">1<br />2<br />3</div>
<div class="inline">1<br />2<br />3</div>
<div class="inline">1<br />2<br />3</div>
<br class="clearBoth" /><!-- you may or may not need this -->
link|improve this answer
actually this was the only way i found to display inline correctly i don't know why the no-float solution did not work.... – Necronet Mar 4 '11 at 23:28
feedback

An inline div is a freak of the web & should be beaten until it becomes a span (at least 9 times out of 10)...

<span>foo</span>
<span>bar</span>
<span>baz</span>

...answers the original question...

link|improve this answer
There are times when you want divs to display inline, for example, when you want to add a margin on the left and right of an element. I don't think that can be done with a span. Steve should probably be using float instead of inline though. – Darryl Hein Oct 7 '10 at 6:20
Not sure I follow Darryl, you can add margin or padding to a span>> <span style="color:white;background-color:black;margin:10px;padding:20px;">xxxxx</span> – bochgoch Oct 7 '10 at 13:30
1  
padding yes, not margin – andreas May 20 '11 at 8:07
1  
What about wanting to have a div with background image flow inline within a paragraph of text. It is often more desirable to use a div with bg image set via CSS than to use an img tag. – NexusRex Aug 3 '11 at 16:26
border:solid doesn't work well with spans. If you want two pictures to display on the same level and have a border this is not suitable. – James Poulson Sep 1 '11 at 12:15
feedback

Try writing it like this:

<div style="display: inline">a</div>
<div style="display: inline">b</div>
<div style="display: inline">c</div>
link|improve this answer
5  
This is the correct answer to the question, but considering the accepted answer, I suspect the question doesn't address the real scenario. – Steve Perks Dec 31 '08 at 16:10
Does not work in IE... – NexusRex Aug 3 '11 at 15:53
5  
IE is depreciated. – chown Nov 7 '11 at 19:08
feedback

Having read this question and the answers a couple of times, all I can do is assume that there's been quite a bit of editing going on, and my suspicion is that you've been given the incorrect answer based on not providing enough information. My clue comes from the use of br tag.

Apologies to Darryl. I read class="inline" as style="display: inline". You have the right answer, even if you do use semantically questionable class names ;-)

The miss use of br to provide structural layout rather than for textual layout is far too prevalent for my liking.

If you're wanting to put more than inline elements inside those divs then you should be floating those divs rather than making them inline.

Floated divs:

===== ======= ==   **** ***** ******   +++++ ++++
===== ==== =====   ******** ***** **   ++ +++++++
=== ======== ===   ******* **** ****   
===== ==== =====                       +++++++ ++
====== == ======

Inline divs:

====== ==== ===== ===== == ==== *** ******* ***** ***** 
**** ++++ +++ ++ ++++ ++ +++++++ +++ ++++

If you're after the former, then this is your solution and lose those br tags:

<div style="float: left;" >
  <p>block level content or <span>inline content</span>.</p>
  <p>block level content or <span>inline content</span>.</p>
</div>
<div style="float: left;" >
  <p>block level content or <span>inline content</span>.</p>
  <p>block level content or <span>inline content</span>.</p>
</div>
<div style="float: left;" >
  <p>block level content or <span>inline content</span>.</p>
  <p>block level content or <span>inline content</span>.</p>
</div>

note that the width of these divs is fluid, so feel free to put widths on them if you want to control the behavior.

Thanks, Steve

link|improve this answer
feedback

<span> ?

link|improve this answer
I think we are talking about inlining block elements that can have width and height. Imagine a div with a background image that you want to flow inline with text. – NexusRex Aug 3 '11 at 16:21
feedback

As mentioned, display:inline is probably what you want. Some browsers also support inline-blocks.

http://www.quirksmode.org/css/display.html#inlineblock

link|improve this answer
Does not work in IE... – NexusRex Aug 3 '11 at 15:53
@NexusRex there is work around to get IE to behave correctly however display:inline is the correct answer. I believe the work around is: display: inline-block; *display: inline; *zoom: 1; setting zoom forces IE to treat the element like a block element. – Chris Oct 17 '11 at 22:37
feedback

I know people say this is a terrible idea, but it can in practice be useful if you want to do something like tile images with comments underneath them. e.g. Picasaweb uses it to display the thumbnails in an album.
See for example/demo http://closure-library.googlecode.com/svn/trunk/closure/goog/demos/inline_block_quirks.html ( class goog-inline-block ; I abbreviate it to ib here )

/* below is a set of hacks to make inline-block work right on divs in IE. */
html > body .ib { display:inline-block; }
.ib {display:inline-block;position:relative;}
* html .ib { display: inline; }
:first-child + html .ib { display:inline; }

Given that CSS, set your div to class ib, and now it's magically an inline block element.

link|improve this answer
This works well in newer IE browsers, but not IE6. – NexusRex Aug 3 '11 at 16:18
feedback
<style type="text/css">
div.inline { display:inline; }
</style>
<div class="inline">a</div>
<div class="inline">b</div>
<div class="inline">c</div>
link|improve this answer
feedback

Use display:inline-block with a margin and media query for IE6/7:

<html>
  <head>
    <style>
      div { display:inline-block; }
      /* IE6-7 */
      @media,
          {
          div { display: inline; margin-right:10px; }
          }
   </style>
  </head>
  <div>foo</div>
  <div>bar</div>
  <div>baz</div>
</html>
link|improve this answer
feedback

I just tend to make them fixed widths so that they add up to the total width of the page - probably only works if you are using a fixed width page. Also "float".

link|improve this answer
feedback

I would use spans or float the div left. The only problem with floating is that you have to clear the float afterwards or the containing div must have the overflow style set to auto

link|improve this answer
I believe we are talking about a div inline with text or other, not floated to one side. – NexusRex Aug 3 '11 at 16:23
feedback

You need to contain the three divs. Here is an example:

CSS

div.contain
{
  margin:3%;
  border: none;
  height: auto;
  width: auto;
  float: left;
}

div.contain div
{
  diplay:inline;
  width:200px;
  height:300px;
  padding: 15px;
  margin: auto;
  border:1px solid red;
  background-color:#fffff7;
  -moz-border-radius:25px; /* Firefox */
  border-radius:25px;
}

Note: border-radius attributes are optional and only work in CSS3 compliant browsers.

HTML

<div class="contain">
  <div>Foo</div>
</div>

<div class="contain">
  <div>Bar</div>
</div>

<div class="contain">
  <div>Baz</div>
</div>

Note that the divs 'foo' 'bar' and 'baz' are each held within the 'contain' div.

link|improve this answer
Display! Not diplay! – Spaceghost Nov 9 '11 at 22:21
feedback

Just use a wrapper div with "float: left" and put boxes inside also containing float: left:

CSS:

wrapperline{
width: 300px;
float: left;
height: 60px;
background-color:#CCCCCC;}

.boxinside{
width: 50px;
float: left;
height: 50px;
margin: 5px;
background-color:#9C0;
float:left;}

HTML:

<div class="wrapperline">
<div class="boxinside">Box 1</div>
<div class="boxinside">Box 1</div>
<div class="boxinside">Box 1</div>
<div class="boxinside">Box 1</div>
<div class="boxinside">Box 1</div>
</div>
link|improve this answer
feedback

this is why people use tables, because nobody has a compatible answer to this question

link|improve this answer
7  
People use tables because they're stuck in 1995 – KitsuneYMG Jan 26 '11 at 13:58
2  
You sir have problems, that or your just not bothered enough to work out how to do things right – Myles Gray Apr 17 '11 at 1:12
Pointless answer -1 – Asciant Jun 24 '11 at 10:58
feedback

Your Answer

 
or
required, but never shown

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