Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta charset="UTF-8">
<title>Collapsed border overflow in vertical-lr RTL composited table</title>
<link rel="match" href="collapsed-border-vertical-lr-rtl-overflow-ref.html">
<style>
body { margin: 60px; }
div { display: inline-block; }
table {
writing-mode: vertical-lr;
direction: rtl;
border-collapse: collapse;
border: none;
will-change: transform;
}
td {
width: 40px;
height: 40px;
padding: 5px;
}
.thin td { border: 2px solid blue; }
.thick td { border: 40px solid orange; }
</style>
<div>
<table>
<tr class="thin"><td></td><td></td></tr>
<tr class="thick"><td></td><td></td></tr>
</table>
</div>