Last active
January 18, 2025 19:30
-
-
Save nicuveo/1a9afbd95fc6f3089463a2592c91a2d0 to your computer and use it in GitHub Desktop.
Vertical alignment bug repro case
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
on firefox 134:
