Skip to content

Instantly share code, notes, and snippets.

@porada
Created June 28, 2013 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save porada/5886266 to your computer and use it in GitHub Desktop.
Save porada/5886266 to your computer and use it in GitHub Desktop.
.fixed {
position: fixed;
top: 20px;
}
/* The same for IE6: */
.fixed {
position: absolute;
top: expression(
value = 20 + parseInt(document.body.currentStyle.paddingTop) + parseInt(document.body.currentStyle.marginTop),
document.documentElement.scrollTop + value + 'px'
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment