I used to always use tables. However, I've been told that the use of tables are a big no-no in modern HTML design. What are some good and "accepted" ways to display tabular data in modern HTML?
I would like to do something like this:
First_Name Last_Name Phone Number Britney Spears 555-555-5555 Jon Bon Jovi 444-444-4444
I'm not 100% clear on why I should not use a table for this. But I've seen people use <li>
's that they use CSS to make behave more like <div>
's
What is a good way to set up data like this using HTML and CSS?