A Pen by Miriam Suzanne on CodePen.
Created
August 3, 2023 10:47
-
-
Save X-oss-byte/e958ccac6e0cfe72fe6a39091428f82d to your computer and use it in GitHub Desktop.
HTML containment overflow (1d)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<h1>HTML containment & overflow</h1> | |
<p> | |
There should be a fixed-position arrow | |
in the top right, | |
and it should stay in the top right, | |
attached to the viewport | |
as you scroll down to see the rainbow. | |
But no browser allows it. | |
<a href="https://github.com/w3c/csswg-drafts/issues/9003">I believe that's a bug.</a> | |
</p> | |
<div class="fixed">⬇️</div> | |
<div class="spacer"></div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
html { | |
container-type: inline-size; | |
} | |
@layer setup { | |
html { | |
font-size: calc(1.5em + 1vw); | |
} | |
.fixed { | |
position: fixed; | |
top: 1em; | |
right: 1em; | |
padding: 1em; | |
background: hsl(0deg 0% 50% / 0.5); | |
border: thick double white; | |
} | |
.spacer { | |
height: 300vh; | |
background: linear-gradient( | |
to bottom, | |
red, | |
orange, | |
yellow, | |
green, | |
blue, | |
indigo, | |
violet | |
); | |
padding: 1em; | |
text-align: center; | |
} | |
} | |
Author
X-oss-byte
commented
Aug 26, 2023
•
- #((https://www.notion.so/7ce5d8a5392146aca7d30892a697b101?v=89f5215802b949b9b2dc3feb257c35dd&pvs=4) )
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment