blob: 699a02bde861e631c2be5ea41fee52d503a4c7de [file] [log] [blame]
<style>
.alignwiththis {
display:inline-block;
height: 200px;
width: 200px;
background-color: blue;
}
.overflowvisible {
display: inline-block;
height: 200px;
width: 200px;
background-color: green;
}
</style>
PASS if the boxes below are aligned ("overflow: hidden" -> baseline is the bottom of the margin box).
<div>
<div class=alignwiththis></div>
<div class=overflowvisible></div>
</div>