2013-09-13 16:53:48 -07:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>CSS Test: Sticky Positioning - inline with margins</title>
|
|
|
|
<link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
|
|
|
|
<link rel="match" href="inline-3-ref.html">
|
|
|
|
<meta name="assert" content="Sticky positioning on inline elements should keep the bounding box of all continuations' margin boxes contained">
|
2013-09-18 08:36:27 -07:00
|
|
|
<link rel="stylesheet" type="text/css" href="ahem.css">
|
2013-09-13 16:53:48 -07:00
|
|
|
<style>
|
|
|
|
#scroll {
|
|
|
|
overflow: hidden;
|
|
|
|
height: 200px;
|
2013-09-18 08:36:27 -07:00
|
|
|
font: 10px/1 Ahem;
|
2013-09-13 16:53:48 -07:00
|
|
|
}
|
|
|
|
#sticky {
|
|
|
|
position: sticky;
|
|
|
|
top: 20px;
|
|
|
|
left: 20px;
|
|
|
|
margin-right: 10px;
|
|
|
|
}
|
|
|
|
#contain {
|
|
|
|
width: 90px;
|
|
|
|
font-size: 10px;
|
|
|
|
}
|
|
|
|
b {
|
|
|
|
display: inline-block;
|
|
|
|
width: 40px;
|
|
|
|
height: 10px;
|
|
|
|
background: black;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div id="scroll">
|
|
|
|
<div id="contain">
|
|
|
|
<b></b><span id="sticky"><b></b><br><b></b></span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|