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
|
1
|
|
|
|
|
|
That's something else then:
|
||
|
|
|
|
Can you please provide more detail on your problem?? |
||
|
|
|
|
(Just edited question, sorry forgot to add spaces at the end of the line) |
||
|
|
|
Try writing it like this:
|
||
|
|
|
|
||
|
|
|
|
Hm..
doesn't work. :( |
||
|
|
|
Excellent. :) Thanks, it works. |
||||
|
|
|
|
||
|
|
|
|
An inline div is a freak of the web & should be beaten until it becomes a span (at least 9 times out of 10)...
...answers the original question... |
||
|
|
|
|
As mentioned, display:inline is probably what you want. Some browsers also support inline-blocks. |
||
|
|
|
|
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 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 If you're wanting to put more than inline elements inside those Floated divs:
Inline divs:
If you're after the former, then this is your solution and lose those
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 |
|||
|
|
|
|
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 :/ |
||
|
|