I have added an html object tag in my page, it displays the content ok in ff but in IE it also shows up a border. How do I remove it.
A:
I think you're describing a need for the following:
<object style="border:0px;">
It would be better to put this in a CSS file. To have no borders around any <object>
element, put the following line in a CSS file:
object { border:0px; }
palswim
2010-09-27 18:54:56
no sir its not working
Rahul Utb
2010-09-27 18:57:24
@Rahul Utb: Ok. Could you paste the HTML code you're using (in the question), then?
palswim
2010-09-27 18:59:29
here is the code http://jsfiddle.net/uF2Xh/Just you can re assemble in a normal html page and see.
Rahul Utb
2010-09-27 19:12:55
A:
There is a deprecated attribute border
which you could also use, although without your code it's hard to say whether it would work.
<object border="0">
Aaron D
2010-09-27 19:04:25