I have a heading, and underneath it I want to make 3 columns that are made of unordered lists
I then want to repeat this process again on the page a few times, ie, heading and columns
Any help appreciated
| SitePoint Sponsor |
I have a heading, and underneath it I want to make 3 columns that are made of unordered lists
I then want to repeat this process again on the page a few times, ie, heading and columns
Any help appreciated


A table is a straightforward way to display that...
Other markup might be more appropriate depending on the nature of the data.HTML Code:<table> <tr> <th colspan="3">Your Heading</th> </tr> <tr> <td> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </td> <td> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </td> <td> <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> </ul> </td> </tr> </table>
17-29% of paid ad clicks are fraudulent. Get protected with Improvely, your online marketing dashboard.
→ Conversion tracking, click fraud detection, A/B testing and more.
Thank you


I would only use the table if the lists were themselves tabular data. Otherwise, just float the lists and clear the element that comes after the last one.
Save the Internet - Use Opera | May my mother rest in peace: 1943-2009
Dan Schulz - Design Team Advisor | Follow me on Twitter
SitePoint References: HTML CSS JavaScript | Become A Guru
WordPress SEO Checklist | What WordPress Plugins Do You Use?
Web Standards Curriculum | Image Free Equal Height Columns
Bookmarks