Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Advanced Tables</title> <style> table { border-collapse: collapse; width: 100%; } th, td { border: 1px solid #bbb; padding: 8px 12px; } col.highlight { background: #fff9c4; } </style> </head> <body> <table> <caption>Product Comparison</caption> <colgroup> <col> <!-- Product column --> <col class="highlight"> <!-- Price column highlighted --> <col span="2"> <!-- Rating and Stock --> </colgroup> <thead> <tr> <th scope="col">Product</th> <th scope="col">Price</th> <th scope="col">Rating</th> <th scope="col">In Stock</th> </tr> </thead> <tbody> <tr><td>Widget Pro</td><td>$49</td><td>4.5★</td><td>Yes</td></tr> <tr><td>Widget Lite</td><td>$19</td><td>4.0★</td><td>Yes</td></tr> <tr><td>Widget Max</td><td>$99</td><td>4.8★</td><td>No</td></tr> </tbody> </table> </body> </html>
Result
Open