Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

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

Alle Antworten (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/