No matter what I do, I cannot attach the style to the scrollbar that appears within the <iframe> that is within the <div> tag.
Anyone?I got a code here..would this help??
<html>
<head>
<style type="text/css">
div
{
background-color:#00FFFF;
width:150;
height:150;
overflow: scroll
}
</style>
</head>
<body>
<p><b>Note:</b> Netscape 4 does not support the "overflow" property.</p>
<p>
The overflow property decides what to do if the content inside an element exceeds the given width and height properties. If you set the overflow property to scroll, scrollbars will be added to the element.
</p>
<div>
You can use the overflow property when you want to have better control of the layout.<br><br>
Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
</div>
</body>
</html>Thanks, but it's not what I need. I cannot get thescrollbar to have a style, such as
{
scrollbar-face-color: #E8E8E8;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: EEEEEE;
scrollbar-darkshadow-color: FFFFFF;
scrollbar-shadow-color: #C0C0C0;
scrollbar-arrow-color: #990000;
scrollbar-track-color: #F9F9F9;
}
I tried assigning it to <div> or <iframe>, can't get it!Never mind, I'm such and idiot sometimes...
It has to be assigned to the body of the html that that particular <iframe> displays.
Duh!
Anyone?I got a code here..would this help??
<html>
<head>
<style type="text/css">
div
{
background-color:#00FFFF;
width:150;
height:150;
overflow: scroll
}
</style>
</head>
<body>
<p><b>Note:</b> Netscape 4 does not support the "overflow" property.</p>
<p>
The overflow property decides what to do if the content inside an element exceeds the given width and height properties. If you set the overflow property to scroll, scrollbars will be added to the element.
</p>
<div>
You can use the overflow property when you want to have better control of the layout.<br><br>
Try to change the overflow property to: visible, hidden, auto, or inherit and see what happens. The default value is visible.
</div>
</body>
</html>Thanks, but it's not what I need. I cannot get thescrollbar to have a style, such as
{
scrollbar-face-color: #E8E8E8;
scrollbar-highlight-color: #FFFFFF;
scrollbar-3dlight-color: EEEEEE;
scrollbar-darkshadow-color: FFFFFF;
scrollbar-shadow-color: #C0C0C0;
scrollbar-arrow-color: #990000;
scrollbar-track-color: #F9F9F9;
}
I tried assigning it to <div> or <iframe>, can't get it!Never mind, I'm such and idiot sometimes...
It has to be assigned to the body of the html that that particular <iframe> displays.
Duh!