HTML CSS examples for CSS Widget:Table Cell
Removing spacing from table cells
<html> <head> <meta name="viewport" content="width=device-width, initial-scale=1"> <style id="compiled-css" type="text/css"> table.pindexAttr { border:2px solid Chartreuse; table-layout:fixed; border-collapse:collapse; width:100%; } .pindexAttr td {<!-- w ww . j a va 2 s . com--> padding:11px; width:11px; line-height:10px; border:2px solid yellow; } </style> </head> <body> <table class="pindexAttr "> <tbody> <tr> <td>Lorem ipsum d</td> </tr> <tr> <td>Lorem ipsum dolor</td> </tr> <tr> <td>Lorem ipsum dolor</td> </tr> <tr> <td>Lorem ipsum dolor</td> </tr> </tbody> </table> </body> </html>