Click to See Complete Forum and Search --> : Using the DIV tag?


MechaDragon
09-14-2003, 11:28 PM
Here is the link the question references to: http://members.cox.net/mechadragon/3dwork.html

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?
Thanks!

Khalid Ali
09-14-2003, 11:49 PM
read up on css property

display:table-cell;

at w3c.org

pyro
09-15-2003, 07:27 AM
<div>'s are block level elements, meaning they are not displayed inline. <span> might be more what you are looking for...