vote up 3 vote down star
1

My only problem is making them line up three-across and have equal spacing. Apparently, spans can not have width and divs (and spans with display:block) don't appear horizontally next to each other. Suggestions?

<div style='width:30%; text-align:center; float:left; clear:both;'> Is what I have now.

flag

Why don't you want to use a table? – DOK Oct 22 '08 at 14:26
Because the data is not tabular. – Thomas Owens Oct 22 '08 at 14:28
The answers below are suitable, but consider that using a table will give you less of a headache if you end up making things more complicated. It's OK to use a table if it makes your work easier. Be pragmatic! :-) – Rahul Oct 22 '08 at 14:32
seriously, don't use a table. This kind of thing is easy with CSS. – Sam Murray-Sutton Oct 22 '08 at 14:52
+1 on don't use a table. This is really easy. Being pragmatic about Tables As Layout is when you are having serious browser compatibility problems. – MDCore Oct 22 '08 at 15:28
show 2 more comments

8 Answers

vote up 4 vote down check

You can use divs with the float: left; attribute which will make them appear horizontally next to each other, but then you may need to use clearing on the following elements to make sure they don't overlap.

link|flag
vote up 0 vote down

Look at the css Float property. http://w3schools.com/css/pr_class_float.asp

It works with block elements like div. Alternatively, what are you trying to display, tables aren't evil if you're really trying to show a table of some information.

link|flag
But it's not a table. They are just three things that I want to appear next to each other. – Thomas Owens Oct 22 '08 at 14:30
vote up 1 vote down

What you might like to do is look up CSS grid based layouts. This layout method involves specifying some CSS classes to align the page contents to a grid structure. It's more closely related to print-bsed layout than web-based, but it's a technique used on a lot of websites to layout the content into a structure without having to resort to tables.

Try this for starters from Smashing Magazine.

link|flag
vote up 1 vote down

you can do:

<div style="float: left;"></div>

or

<div style="display: inline;"></div>

Either one will cause the divs to tile horizontally.

link|flag
vote up 1 vote down

You can use

.floatybox {
     display: inline-block;
     width: 123px;
}

If you only need to support browsers that have support for inline blocks. Inline blocks can have width, but are inline, like button elements.

Oh, and you might wnat to add vertical-align: top on the elements to make sure things line up

link|flag
vertical align does not work on divs. – Jeremy B. Oct 22 '08 at 15:15
vertical align does not work on block level elements. In this case we're talking about elements whose display has been set to inline-block. – runeh Oct 23 '08 at 8:45
vote up 0 vote down

I would try to give them all display: block; attribute and using float: left;.

You can then set width and/or height as you like. You can even specify some vertical-alignment rules.

link|flag
vote up 2 vote down

My answer:

<style>
 #whatever div {
  display: inline
  margin: 0 1em 0 1em
  width: 30%
}
</style>

<div id="whatever">
 <div>content</div>
 <div>content</div>
 <div>content</div>
</div>

Why?

Technically, a Span is an inline element, however it can have width, you just need to set their display property to block first. However, in this context, a div is probably more appropriate, as I'm guessing you want to fill these divs with content.

One thing you definitely don't want to do is have clear:both set on the divs. Setting it like that will mean that the browser will not allow any elements to sit on the same line as them. The result, your elements will stack up.

Note, the use of display:inline. This deals with the ie6 margin-doubling bug. You could tackle this in other ways if necessary, for example conditional stylesheets.

I've added a wrapper (#whatever) as I'm guessing these won't be the only elements on page, so you'll almost certainly need to segregate them from the other page elements.

Anyway, I hope that's helpful.

link|flag
vote up 0 vote down

I would do it something like this as it gives you 3 even sized columns, even spacing and (even) scales. (not tested so it might need tweaking for older browsers)

<style>
html, body{
margin: 0;
padding: 0;
}

.content{
float: left;
width: 30%;
border:none;
}

.rightcontent{
float: right;
width: 30%;
border:none
}

.hspacer{
width:5%;
float:left;
}

.clear{
clear:both;
}
</style>

<div class="content">content</div>
<div class="hspacer">&nbsp;</div>
<div class="content">content</div>
<div class="hspacer">&nbsp;</div>
<div class="rightcontent">content</div>
<div class="clear"></div>
link|flag

Your Answer

Get an OpenID
or

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