Making columns with a long list
I preformed a query and got a long list. The output doesn't take up that much horizontal space and so I'd like to make two columns with it to save on scrolling. Is that possible with CSS?
Here's my list looks like this:
![]() | Name: Snowfresh Brewer: Edelweiss Overall: 3.5 |
![]() | Name: Zepplin Brewer: Leibringer Overall: 3 |
And the code:
<p>German List:</p>
<table width="182" height="145" border="0">
<?php
//Puts it into an array
while($info = mysql_fetch_array( $data )) {
//Outputs the image and other data ?>
<tr>
<td><?php echo "<img src=http://localhost/beer_diary/images/beer_tasted_profile/".$info['image_id'] ."><br/>";?></td>
<td><?php echo "<b>Name:</b> ".$info['beer_name']. "<br> ";
echo "<b>Brewer:</b> ".$info['brewer']. "<br> ";
echo "<b>Overall:</b> ".$info['overall_id']; }?></td>
</tr>
</table>
<p> </p>


