Files
ladybird/Base/res/html/tests/inline-block-treat-100pct-width-as-auto.html

22 lines
477 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>