Test HTML
Nov 21, 2025
<style> .table-container { width: 100%; overflow-x: auto; /* Enables horizontal scrolling */ } .product-comparison { width: 100%; border-collapse: collapse; font-family: Arial, sans-serif; margin: 20px 0; border-radius: 8px; overflow: hidden; } .product-comparison th, td { text-align: left; padding: 16px; } .product-comparison th { background-color: #f2f2f2; /* Correct ListKit Blue */ color: #000; border-bottom: 2px solid #ffffff; font-size: 16px; border-right: 1px solid #fff; } .product-comparison tr { background-color: #f9f9f9; border-bottom: 1px solid #ddd; } .product-comparison tr:nth-child(odd) { background-color: #ffffff; } .product-comparison td { font-size: 14px; border-left: 1px solid #ddd; /* Prominent vertical lines */ } .product-comparison td:first-child { border-left: none; } .product-comparison .first-column { font-weight:bold; } </style> <div class="table-container"> <table class="product-comparison"> <tbody> <tr> <th class="table-header">Feature</th> <th class="table-header">Lake CX146-X Wide</th> <th class="table-header">Fizik Tempo Artica R5 GTX</th> <th class="table-header">Sidi Zero Gore Winter Boots</th> <th class="table-header">Northwave Celsius R Arctic GTX</th> <th class="table-header">Northwave Magma R Rock</th> </tr> <tr> <td class="first-column">Price (USD)</td> <td class="table-content">$279.99</td> <td class="table-content">$221-$259.99</td> <td class="table-content">$324.99</td> <td class="table-content">$265</td> <td class="table-content">$131-$191</td> </tr> <tr> <td class="first-column">Cleat Type</td> <td class="table-content">3-bolt road</td> <td class="table-content">3-bolt road</td> <td class="table-content">3-bolt road</td> <td class="table-content">3-bolt road</td> <td class="table-content">3-bolt road</td> </tr> <tr> <td class="first-column">Temperature Rating</td> <td class="table-content">Very Cold</td> <td class="table-content">Moderate to Cold</td> <td class="table-content">Very Cold</td> <td class="table-content">Cold</td> <td class="table-content">Cold</td> </tr> <tr> <td class="first-column">Waterproof</td> <td class="table-content">Yes</td> <td class="table-content">Yes (Gore-Tex)</td> <td class="table-content">Yes (Gore-Tex)</td> <td class="table-content">Yes (Gore-Tex)</td> <td class="table-content">-</td> </tr> <tr> <td class="first-column">Insulation</td> <td class="table-content">Thinsulate (200g)</td> <td class="table-content">Fleece</td> <td class="table-content">-</td> <td class="table-content">Fleece</td> <td class="table-content">Primaloft Gold</td> </tr> <tr> <td class="first-column">Sole Features</td> <td class="table-content">Supergrip Enduro rubber, fiberglass-injected nylon</td> <td class="table-content">Carbon-reinforced nylon</td> <td class="table-content">Millennium 5 sole</td> <td class="table-content">NRG Air Carbon</td> <td class="table-content">Jaws Carbon Reinforced</td> </tr> <tr> <td class="first-column">Closure System</td> <td class="table-content">M4 BOA dial, Click-Fit quick release</td> <td class="table-content">Velcro & L6 BOA dial</td> <td class="table-content">Techno-3 System</td> <td class="table-content">SLW2 twist lock</td> <td class="table-content">SLW2 twist lock</td> </tr> <tr> <td class="first-column">Key Features</td> <td class="table-content">Wide fit, Thinsulate insulation, high ankle cuff</td> <td class="table-content">Waterproof, breathable, warm, efficient</td> <td class="table-content">Premium construction, weather protection, durable</td> <td class="table-content">Warm, comfortable, adjustable, reflective</td> <td class="table-content">Breathable, durable, affordable</td> </tr> </tbody> </table></div>
