3 column list help

FilmFoo

Addicted
Joined
Aug 16, 2007
Messages
862
Reaction score
0
FP$
6
Hi 🙂

I'mn having trouble - I used to have on my old site a 3 column list for the alphabet as my movie database. I've lost my code now, and I was wondering if someone could start it off for me as i've forgot how to do it.

basically I'm trying to get a 3 column list as so:


A B C
D E F

etc...

Can anyone help me out?
 
For an unordered list,

<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>

For an ordered list (eg 1. 2. 3.)

<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>
 
I know that mate 😛 , I wanted a 3 column list 🙂

not a 3 row, 3 columns, not sure how to do that though

thanks for the reply 🙂
 
Oh, my bad. 😛

I tried looking it up for you, but all I could figure out was that CSS is needed. Sorry I couldn't be of anymore help. =[
 
HTML:

<table>
<tr>
<td width="33%">
Column 1
</td>
<td width="34%">
Column 2
</td>
<td width="33%">
Column 3
</td>
</tr>
</table>
 
Back
Top Bottom