Skip to content

Instantly share code, notes, and snippets.

@nicuveo
Last active January 18, 2025 19:30
Show Gist options
  • Save nicuveo/1a9afbd95fc6f3089463a2592c91a2d0 to your computer and use it in GitHub Desktop.
Save nicuveo/1a9afbd95fc6f3089463a2592c91a2d0 to your computer and use it in GitHub Desktop.
Vertical alignment bug repro case
<!DOCTYPE html>
<html>
<head>
<style>
table td {
vertical-align: baseline;
}
.left-column {
padding-top: 50px;
}
</style>
</head>
<body>
<div>
<table>
<tr>
<td class="left-column" rowspan="2">foo</td>
<td>bar</td>
</tr>
<tr>
<td>baz</td>
</tr>
</table>
</div>
</html>
@nicuveo
Copy link
Author

nicuveo commented Jan 18, 2025

on firefox 134:
firefox134

@nicuveo
Copy link
Author

nicuveo commented Jan 18, 2025

on firefox 130:
firefox130

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment