I would like to use the CSS equivalent of border="1"
through an equivalent stylesheet definition.
The border-width
and border-style
applies for the table but the cell borders which are given by border="1"
are missing out.
So this should be an easy answer but when you use CSS table and td its doesn't quite match border="1" 100% (But its very close)
My way uses this:
table {
border: 1px outset grey;
padding: 1px
}
td {
border: thin inset grey;
margin: 1;
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With