jquery - Last DIV scrollable only -


i have following scenario need make div scrollable. whats happening me when try different solutions make scrollable entire div set becomes scrollable. want here make last div scrollable.

<div class="container">first</div> <div class="container">second</div> <div class="container">     <div id="notsolong">don't scroll this!!!!</div>     <div id="long">lorem ipsum dolor sit amet, consectetur adipiscing elit. maecenas ut placerat ipsum. integer mollis magna sapien, nec fermentum justo volutpat dapibus. in eget pretium enim. scroll this!!!</div> </div>  .container {     width:100%;     height:auto;     min-height:100px; }  #long {     width:200%;     overflow-x:auto; } 

you should add overflow:auto; .container. alternatively, if want only .long scroll, should wrap element , set overflow:auto


Comments

Popular posts from this blog

java - Date formats difference between yyyy-MM-dd'T'HH:mm:ss and yyyy-MM-dd'T'HH:mm:ssXXX -

c# - Get rid of xmlns attribute when adding node to existing xml -