CSS- Creating a multiple-column Table
Hello,
The code below is pure CSS, and it displays a row for each "id." This is great. However, it looks like a table with one column. I would like it to look like a table with three columns, one for each span below. How can I do this?
Thanks in advance,
John
<div class='entry'>
<span class='link2'>
<a href='<?php echo $row['link']; ?>'> <?php echo $row['title']; ?> </a>
</span>
<span class='votes_count' id='votes_count<?php echo $row['id']; ?>'><?php echo $effective_vote." votes"; ?></span>
<span class='vote_buttons' id='vote_buttons<?php echo $row['id']; ?>'>
<a href='javascript:;' class='vote_up' id='<?php echo $row['id']; ?>'></a>
</span>
</div>