Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

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

모든 댓글 (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/