vote up 0 vote down star
1

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

flag

72% accept rate

12 Answers

vote up 5 vote down check

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|flag
vote up 0 vote down

Can you please provide more detail on your problem??

link|flag
vote up -1 vote down

(Just edited question, sorry forgot to add spaces at the end of the line)

link|flag
I still don't understand what you're asking. Please try to phrase your request in the form of a question and give us more detail on the code you're using. – PHLAK Oct 22 '08 at 6:03
vote up 10 vote down

Try writing it like this:

<div style="display: inline">a</div>
<div style="display: inline">b</div>
<div style="display: inline">c</div>
link|flag
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
vote up 0 vote down
<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|flag
vote up -1 vote down

Hm..

<div style="display: inline">1<br />2<br />3</div>
<div style="display: inline">1<br />2<br />3</div>
<div style="display: inline">1<br />2<br />3</div>

doesn't work. :(

link|flag
display:inline-block is for that. – porneL Nov 20 '08 at 0:01
vote up -2 vote down

Excellent. :) Thanks, it works.

link|flag
Please don't respond to answers with answers; your responses they won't stay in order. Add comments to answers (like this!) if you want to comment on them. – Kyralessa Oct 22 '08 at 13:05
yep accept the answer if you like it. – John Nolan Dec 31 '08 at 15:04
vote up 3 vote down

<span> ?

link|flag
vote up 17 vote down

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|flag
vote up 1 vote down

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

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

link|flag
vote up 1 vote down

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|flag
vote up 0 vote down

Okay, but what if you want to place these elements inside of a fixed width div? I'm attempting this, but the content wraps to a new line :/

link|flag

Your Answer

Get an OpenID
or

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