mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
35 lines
937 B
HTML
35 lines
937 B
HTML
|
<!DOCTYPE html>
|
||
|
<!-- Any copyright is dedicated to the Public Domain.
|
||
|
- http://creativecommons.org/publicdomain/zero/1.0/ -->
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>CSS Test: Sticky Positioning - support test</title>
|
||
|
<link rel="author" title="Corey Ford" href="mailto:cford@mozilla.com">
|
||
|
<link rel="match" href="pref-1-ref.html">
|
||
|
<meta name="assert" content="This test indicates whether sticky positioning is enabled.">
|
||
|
<style>
|
||
|
body {
|
||
|
margin: 0;
|
||
|
line-height: 1;
|
||
|
}
|
||
|
#sticky {
|
||
|
position: absolute;
|
||
|
position: sticky;
|
||
|
left: -100%;
|
||
|
width: 100%;
|
||
|
padding-bottom: 1em;
|
||
|
margin-bottom: -1em;
|
||
|
background: white;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<p>
|
||
|
"position: sticky" is:
|
||
|
<!-- If sticky positioned, this will cover up "disabled" below: -->
|
||
|
<div id="sticky">enabled</div>
|
||
|
<div>disabled</div>
|
||
|
</p>
|
||
|
</body>
|
||
|
</html>
|