swf has dotted frame, css outline:none; border:none does not help to avoid this on firefox 4
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)
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/