CSS
-Tricks
treehouse :
what would you like to learn today?
Web Design
Web Development
iOS Development
Show search box
Search
Search in:
All
Articles
Forums
Snippets
Videos
✕
Home
Forums
Snippets
Gallery
Videos
Almanac
Demos
Lodge
Navigation 'n' Search
Forums
Illustration by Nick Sirotich
Forums
»
CSS Combat
No-scroll code. Does it exist?
allisonweiss
Permalink to comment
#
February 2009
Is there a way to prevent scrolling? I've heard of something for IE, but is there a solution for other browsers?
Thanks!
sebastiannoell
Permalink to comment
#
February 2009
body {
height: 100%;
max-height: 100%;
overflow: hidden;
}
this should do it.
TheDoc
Permalink to comment
#
February 2009
You want to be careful on what you choose not to have scrolling. Is it for anything specific?
Add a Comment
Thanks!
body {height: 100%;
max-height: 100%;
overflow: hidden;
}
this should do it.