PDA

View Full Version : i need a scrollbar frame thingy....



Y2Kevin
September 4th, 2002, 14:33
i saw on e once it was like an i frame but without the external html......

meow
September 7th, 2002, 03:16
You are looking for the overflow property in CSS. :)
http://www.w3.org/TR/REC-CSS2/visufx.html#overflow

Something like this:

<style type="text/css">
#scroller { width: 300px; height: 400px; overflow: scroll }
/* use overflow: auto if you only want scrollbars when they are needed */
</style>

..........

<div id="scroller"
<p>
Yadda yadda...</p>
<p>
Yadda yadda...</p>
</div>

shizzle
September 7th, 2002, 10:29
OMG!!! ITS MEOW!!!!! He's BAAAACCCKKKK!!!!!!

OriginXT
September 26th, 2002, 22:58
Originally posted by Y2Kevin
i saw on e once it was like an i frame but without the external html......

more like <div style="overflow:auto;width:600;height:400">

some stuff

</div>