How to add vertical Scrollbars to both sides of a Table in html?
Vertical Scrollbars
Collapse
X
-
Tags: None
-
HTML Syntax
Code:<td id="content-containertable" class="override"> <div> [lots of lines]...<br/>... </div> </td>
Code:#content-containertable.override{ width:150px; border-color:Silver; border-style:Double; background-color:Lime; } #content-containertable.override div{ height:200px; overflow:scroll; }
-
Hello, to get a good answer, it's usually helpful to paste in your source code for us to see. You can paste it right in the question (make sure you formati it) or you can link to a live example on your own server or at www.jsfiddle.net :)Comment
Comment