Created
January 22, 2014 14:56
-
-
Save lukehedger/8560101 to your computer and use it in GitHub Desktop.
Border around browser viewport - with scrollbars inside
This file contains hidden or 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
.page-wrapper { | |
position: absolute; | |
top: 0; | |
left: 0; | |
width: 100%; | |
height: 100%; | |
z-index: 700; /* must be the higher than all other elements */ | |
overflow: auto; /* moves scrollbars inside border */ | |
background: #fff; | |
border: 5px solid #ff9900; | |
} |
This file contains hidden or 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
<div class="page-wrapper"> | |
<div class="page"> | |
Page content goes in here | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment