mirror of
https://github.com/servo/servo.git
synced 2025-06-06 16:45:39 +00:00
are to be reflowed. See the comment added to `BlockFlow::propagate_assigned_inline_size_to_children()` for details. Closes #13704.
20 lines
353 B
HTML
20 lines
353 B
HTML
<!DOCTYPE html>
|
|
<style>
|
|
.float {
|
|
float: right;
|
|
}
|
|
.bad {
|
|
display: inline-block;
|
|
background-color: gray;
|
|
height: 30px;
|
|
width: 30px;
|
|
}
|
|
.bad:hover {
|
|
opacity: .85;
|
|
}
|
|
</style>
|
|
<div class=float>
|
|
<a class="bad"></a>
|
|
</div>
|
|
<p style="clear: both">Mouse over the preceding gray square. It should change color but remain in place.</p>
|
|
|