mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
757 B
HTML
31 lines
757 B
HTML
<!DOCTYPE html>
|
|
<!-- Any copyright is dedicated to the Public Domain.
|
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
|
<html>
|
|
<head>
|
|
<title>iframe for CSS Test: Sticky Positioning - continuations have no effect when resizing</title>
|
|
<link rel="author" title="Abel Lin" href="mailto:alin@mozilla.com">
|
|
<link rel="stylesheet" type="text/css" href="ahem.css">
|
|
<style>
|
|
#scroll {
|
|
height: 100px;
|
|
overflow: hidden;
|
|
font: 20px/1 Ahem;
|
|
}
|
|
#sticky {
|
|
display: inline;
|
|
position: sticky;
|
|
top: 20px;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="scroll">
|
|
<div id="sticky">
|
|
<div>in block</div>
|
|
after block
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|