How can I make a div scrollable???
I want it to have scrollbars if the content doesnt fit in the specified size of the div...
/Smirre
Printable View
How can I make a div scrollable???
I want it to have scrollbars if the content doesnt fit in the specified size of the div...
/Smirre
The CSS overflow attribute does it.
Code:<div style="width: 150px; height: 100px; overflow: scroll; color: red; background: gray;">
<p>The quick brown fox jumped over the lazy dog.</p>
<p>The quick brown fox jumped over the lazy dog.</p>
<p>The quick brown fox jumped over the lazy dog.</p>
</div>