mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 08:55:07 +00:00

Fix table box width calculation to minus horizonal borders from space available for columns.
11 lines
No EOL
194 B
HTML
11 lines
No EOL
194 B
HTML
<style>
|
|
.table {
|
|
width: 100%;
|
|
border: 100px solid black;
|
|
}
|
|
|
|
.cell {
|
|
height: 10px;
|
|
background-color: orange;
|
|
}
|
|
</style><table class="table"><tr><td class="cell"></td></tr></table> |