Web.QHMIT
.com
Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
Run
<!doctype html> <title>Example</title> <style> table { width: 100%; border: 1px dotted orange; empty-cells: hide; } td { border: 3px solid limegreen; background: gold; padding: 1em; } </style> <table> <tr> <td>Cell 1</td> <td></td> <tr> <tr> <td>Cell 3</td> <td>Cell 4</td> </tr> </table>
Preview