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.
.tl {
border-right-style: solid;
border-bottom-style: solid;
}
.tr {
border-left-style: solid;
border-bottom-style: solid;
}
.bl {
border-right-style: solid;
border-top-style: solid;
}
.br {
border-left-style: solid;
border-top-style: solid;
}
<table>
<tr><td class="tl">a</td><td class="tr">b</td></tr>
<tr><td class="bl">c</td><td class="br">d</td></tr>
</table>
table {
border-collapse: collapse;
}
.tl {
border-right-style: solid;
border-bottom-style: solid;
}
.br {
border-left-style: solid;
border-top-style: solid;
}
<table>
<tr><td class="tl">a</td><td>b</td></tr>
<tr><td>c</td><td class="br">d</td></tr>
</table>
table {
border-collapse: collapse;
}
td {
border: 1px solid;
}
<table>
<tr>
<td>a</td><td>b</td>
</tr>
<tr>
<td>c</td><td>d</td>
</tr>
</table>
table {
border-collapse: collapse;
[red]border-style: hidden;[/red]
}
td {
border: 1px solid;
}
Border conflict resolutionCSS 2.1 said:The rule of thumb is that at each edge the most "eye catching" border style is chosen, except that any occurrence of the style 'hidden' unconditionally turns the border off.