Created
July 11, 2012 17:37
-
-
Save marcomarkkez/3091921 to your computer and use it in GitHub Desktop.
scroll avanzado
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
<style> | |
.window_scroll{ | |
display:block; | |
width:100%; | |
height:100%; | |
overflow: hidden; | |
} | |
.window_aside { | |
display:block; | |
width: 173px; | |
height: 100%; | |
float:left; | |
position:relative; | |
font-size: 11px; | |
} | |
.window_main { | |
display:block; | |
overflow: auto; | |
height: 100%; | |
} | |
<!-- | |
aqui esta en fiddle http://jsfiddle.net/punktoy/e5Mvc/ | |
--> | |
</style> | |
<div class="window_scroll"> | |
<div class="window_aside"> | |
aqui no escrolea | |
</div> | |
<div class="window_main"> | |
aqui escrolea | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment