servo/tests/ref/position_relative_stacking_context_contents_ref.html
Patrick Walton 2276d642fd layout: Stop double-counting position: relative offsets for stacking
contexts.

Fixes the location of the gear menu on the Google SERPs.
2015-09-04 09:28:18 -07:00

17 lines
221 B
HTML

<!DOCTYPE html>
<style>
html, body {
margin: 0;
}
aside {
display: block;
position: absolute;
left: 12px;
top: 0;
width: 100px;
height: 100px;
background: blue;
}
</style>
<aside></aside>