mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
Vertical-align padding should not apply to anonymous table-cells that wrap a flex/grid container, as the container handles its own alignment.
12 lines
167 B
HTML
12 lines
167 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.flex {
|
|
display: flex;
|
|
}
|
|
.tall {
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|
|
</style>
|
|
<table><td class="flex">foo</td><td><div class="tall">bar
|