
This fixes the issue when margin collapsing state was always reset if a box has clear property not equal to none even if it does not actually introduce clearance.
8 lines
No EOL
184 B
HTML
8 lines
No EOL
184 B
HTML
<!doctype html><style>
|
|
.upper {
|
|
margin-bottom: 75px;
|
|
}
|
|
.mystery {
|
|
clear: both;
|
|
}
|
|
</style><body><div class="upper">upper</div><div class="mystery"></div><div class="lower">lower |