shading?

liunx

Guest
Is there any way that if you do an i frame liek this <br />
<br />
<iframe src=http://www.htmlforums.com/archive/index.php/"random6.html" frameborder="0" width="250" height="500" scrolling="auto" name="something"><br />
<br />
that you could have shading around that box usign any code?<!--content-->Well... you could put a border around it:<br />
<br />
<iframe src=http://www.htmlforums.com/archive/index.php/"random6.html" frameborder="0" width="250" height="500" scrolling="auto" name="something" style="border: 1px solid #333;"><br />
<br />
:confused:<!--content-->Mmm thats an idea but is there any way so that the only boarder is showing say the bottom line of the boarder and the right or left hand side of the boarder so its like half the boarder. :confused:<!--content-->You could do<br />
<br />
<iframe src=http://www.htmlforums.com/archive/index.php/"random6.html" frameborder="0" width="250" height="500" scrolling="auto" name="something" style="border-top: 1px solid #000; border-left: 1px solid #000; border-right: 1px solid #333; border-bottom: 1px solid #333;"><br />
<br />
So that top and left are dark and right and bottom are light! That should give somewhat of a shadow effect.<!--content-->thanks thats what i needed i have it fixed now :D<!--content-->
 
Back
Top