Using the DIV tag?

Here is the link the question references to: <!-- m --><a class="postlink" href="http://members.cox.net/mechadragon/3dwork.html">http://members.cox.net/mechadragon/3dwork.html</a><!-- m --> <br />
<br />
I building a simple table and as you can see below each image I have a cell with with three hyperlinks in each. I am trying to get them to align to the left center and right using the DIV tags but it always creates a new line. Anyone know what I am doing wrong?<br />
Thanks!<!--content-->read up on css property<br />
<br />
display:table-cell;<br />
<br />
at w3c.org<!--content--><div>'s are block level elements, meaning they are not displayed inline. <span> might be more what you are looking for...<!--content-->
 
Back
Top