Join us and the lead editor of IRL, Mozilla's multi-award-winning podcast, for a behind-the-scenes look at the pod and to contribute your ideas for the next season, themed: "AI and ME." Mark your calendar and join our Community Call on Wednesday, Aug 7, 17:00–17:45 UTC. See you there!

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/