How to Create a HTML Scroll Box?

If you have a lot of data to be shown on a website, but a limited number of space to show it on, your best bet is an HTML Scroll box.

Also creating an HTML Scroll Box is a piece of cake. Just cut/copy/ paste the code below and populate the table, dynamically or statically with content and you are done.

Code below ->
<div style="overflow:auto; height:100px; width:300px">
<table cellpadding="0" cellspacing="0" style="width:250px;">
<tr>
<td>A <br>B<br>C<br>D<br>E</td>
</tr>
</table>
</div>







A
B
C
D
E



Create a HTML Scroll Box like this ->

No comments:

Post a Comment