HTML CSS examples for CSS Widget:Table Cell
Removing border from table cells
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> table {<!-- w w w. j a v a 2 s .c o m--> border-spacing:0px; border:2px solid Chartreuse; } td, th { width:21px; height:21px; background-color:yellow; } </style> </head> <body> <table> <thead> <tr> <th></th> <th></th> </tr> </thead> <tbody> <tr> <td></td> <td></td> </tr> <tr> <td></td> <td></td> </tr> </tbody> </table> </body> </html>