1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 18:28:12 +00:00
serenity/Tests/LibWeb/Layout/input/inline-block-treat-100pct-width-as-auto.html
Shannon Booth 7690f76f92 LibWeb/Tests: Move unresolvable % width on inline-block to layout test
Removing the last test fomr Base/res/html/tests :^)
2023-08-21 13:51:12 +02:00

20 lines
No EOL
473 B
HTML

<!DOCTYPE html><html><head><style>
* {
border: 1px solid black !important;
}
.outer {
float: left;
background: pink;
}
.first {
display: inline-block;
width: 100%;
background: orange;
}
.second {
width: 50px;
height: 50px;
background: magenta;
}
</style>
</head><body><div class="outer"><div class="first">programming</div><div class="second"></div>