ladybird/Tests/LibWeb/Layout/input/css-table-cell-verticalalign-text-top.html
Pavel Shliak 38bb8ce0de LibWeb: Modify table formatting according to spec
Makes Sub, Super, TextBottom, TextTop vertical aligns equal to Baseline
2024-11-04 14:54:32 +00:00

23 lines
No EOL
390 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
table {
border-collapse: collapse;
}
td {
border: 1px solid black;
width: 200px;
height: 100px;
vertical-align: text-top;
}
</style>
</head>
<body>
<table>
<tr>
<td>Text at the top</td>
</tr>
</table>
</body>
</html>