Page 1 of 1

Input의 점선을 없앨수 없나요?

Posted: 2008 07 12 10:12 40
by changco1
Usercontent.css를 이용해서 모든 링크의 점선을 아래와 같은 방식으로 없앴습니다.

/* remove dotted links */
* { outline: none;}
a:active { outline: none; }
a:focus { outline:none; }
a{ outline: none;}
:focus{ -moz-outline-style: none;}

/* Change It To This: */

:-moz-any-link:focus {
outline: none;
}

링크는 그래서 점선이 작동하지 않는데 submit input botton같은 경우에는 점선이 생깁니다.
그래서 input{outline:none;}이나 input:active-_-? 같은 속성도 넣어서 실험해 봤는데 안되더군요 ㅠㅠ
방법이 있을것 같은데 어떻게하나요 ?