Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More

swf has dotted frame, css outline:none; border:none does not help to avoid this on firefox 4

more options

swf object has dotted frame around adding css with <style type="text/css" media="screen">

   object { outline:none; border:none; }

</style> does not solve this problem

swf object has dotted frame around adding css with <style type="text/css" media="screen"> object { outline:none; border:none; } </style> does not solve this problem

All Replies (1)

more options

I had the same problem, and this solution below worked for me. Basically, just try adding this to your css:

object, embed {

 outline: 0;

}

Original idea is taken from this site: http://css-tricks.com/removing-the-dotted-outline/