Skip to main content

Posts

Showing posts from December, 2020

How to create multiple table in one page in HTML

  How to create multiple table in one page in HTML Creating multiple tables on a single webpage is a common requirement for displaying data comparisons, price lists, or technical specifications. While it might seem straightforward, achieving a layout where tables sit side-by-side while remaining mobile-responsive requires modern CSS techniques. If you’re building a webpage and need to compare data like listing the prices of different cars side-by-side you’ll definitely need to put multiple tables on a single page. But if you’ve ever tried this, you already know the headache. Getting  tables to align perfectly next to each other without breaking your layout on a mobile phone can be incredibly frustrating. I remember the old days of web design when the quick fix was to "nest" tables literally putting a <table> inside the <td> of another table just to force them to sit side-by-side. If you are still doing that, please stop! It’s terrible fo...