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
|
feedback
|
|
That's something else then:
| |||
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)...
...answers the original question... | |||||||||||||||
feedback
|
|
Try writing it like this:
| |||||||||||
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 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 | ||||
|
feedback
|
|
| |||
feedback
|
|
As mentioned, display:inline is probably what you want. Some browsers also support inline-blocks. | |||||
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.
Given that CSS, set your div to class ib, and now it's magically an inline block element. | |||
|
feedback
|
| |||
|
feedback
|
|
Use display:inline-block with a margin and media query for IE6/7:
| |||
|
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". | |||
|
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 | |||
feedback
|
|
You need to contain the three divs. Here is an example: CSS
Note: border-radius attributes are optional and only work in CSS3 compliant browsers. HTML
Note that the divs 'foo' 'bar' and 'baz' are each held within the 'contain' div. | ||||
|
feedback
|
|
Just use a wrapper div with "float: left" and put boxes inside also containing float: left: CSS:
HTML:
| |||
|
feedback
|
|
this is why people use tables, because nobody has a compatible answer to this question | |||||||||||
feedback
|