need help with scrollpane

  • Thread starter Thread starter Guest
  • Start date Start date
For Html you will need an IFrame and CSS

--




|I create a website http://www.rudibuys.co.za/indexflash.htm i created a
| scrollpane in flash in the about me section. Now i want to create a html
| section the same as the flash site. How do i create a scrollpane in html like
| in the flash file?
|
| Thank you
 
You could use a scrolling div tag. That is a div tag that includes the style
"overflow-x" and/or "overflow-y" and has the appropriate width and/or height
style set. Example:

<div style="border-style:solid; border-width:1px; overflow-y:scroll;
width:350px; height:150px">This is a div.<br>
It has a set width and height, and a vertical scroll bar.<br>
Please scroll down for more<br><br><br><br><br><br><br><br><br>more</div>

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Ambiguity has a certain quality to it.
 
Back
Top