We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I'm at the top of the page:
<div id="sidebar" class="span4 hidden-phone" style=" position: sticky; top: 40px; right: 20px; ">
When I scroll down it sticks (good):
<div id="reader-sidebar" class="span4 hidden-phone stuck" style=" position: sticky; top: 40px; right: 20px; position:fixed;width:389px;height:347px">
When I scroll down farther, it disappears (bad):
<div id="reader-sidebar" class="span4 hidden-phone" style=" position, sticky; top, 40px; right, 20px; position,fixed;width,389px;height,347px">
It looks like two problems happen there. One is that it loses its stuck class and two is that the rules are written with commas in place of colons.
stuck
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I'm at the top of the page:
When I scroll down it sticks (good):
When I scroll down farther, it disappears (bad):
It looks like two problems happen there. One is that it loses its
stuck
class and two is that the rules are written with commas in place of colons.The text was updated successfully, but these errors were encountered: