foxymorons
Technical User
Looking for a simple CSS style, that will give me thin table borders.
Tried every tutorial online and nothing.
any help greaT!
Tried every tutorial online and nothing.
any help greaT!
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
table {
border-collapse: collapse;
}
td, th {
border: 1px solid black;
}
table {
border-collapse: collapse;
}
td, th{
border:1px solid #00FF00;
}
table { border:1px solid #000; }
td { border:1px solid #000; }
table {
border-left:1px solid #000;
border-bottom:1px solid #000;
border-collapse: collapse;
}
td {
border-top:1px solid #000;
border-right:1px solid #000;
padding:4px;
}
<table border="0" cellspacing="0" cellpadding="0>
...