I have an iframe specified as ...
<iframe id="NewPg" src=http://www.webdeveloper.com/forum/archive/index.php/"JSO_pg_1.htm" allowTransparency="true" width="700px" height="450px" />
I page loaded into this frame referrences a "Quote" class defined externally as follows ...
.quote {
position : relative;
left : 25px;
width : 600px;
padding : 5px;
border-style : solid;
border-width : 2px;
font-family : "Times New Roman";
font-weight : bold;
background-color : #eee685;
}
For some reason, this forces IE to display its horizontal scrollbar, and decreasing the class' width property (e.g., width : 60px) has no effect.
What am I doing wrong?
<iframe id="NewPg" src=http://www.webdeveloper.com/forum/archive/index.php/"JSO_pg_1.htm" allowTransparency="true" width="700px" height="450px" />
I page loaded into this frame referrences a "Quote" class defined externally as follows ...
.quote {
position : relative;
left : 25px;
width : 600px;
padding : 5px;
border-style : solid;
border-width : 2px;
font-family : "Times New Roman";
font-weight : bold;
background-color : #eee685;
}
For some reason, this forces IE to display its horizontal scrollbar, and decreasing the class' width property (e.g., width : 60px) has no effect.
What am I doing wrong?