css - html object tag border issue -


I've added an html object tag to my page, it shows the content properly in FF, . How do I delete it?

I think that you are describing the following:

  & lt; Object style = "border: 0 pixels;" & Gt;  

It would be better to put it into a CSS file. Any & lt; Object & gt; element has no limit, put the following line in the CSS file:

  object {border: 0 pixels; }  

Comments