검색창 하이라이트
본문
index 검색창 하이라이트
input {outline: none;}
input:focus {outline: none;}
별거 별거 다 해봐도 안되요 ㅠㅠ
혹시 어떻게 해야 할까요 ?
페이지 안에도 해보고 css 에서도 해보고 style="" 도 해보고
아~ 알수가 없네요
답변 3
<style>
input[type=text]:focus, input[type=password]:focus, textarea:focus, select:focus {
-webkit-box-shadow: 0 0 0px #9ed4ff;
-moz-box-shadow: 0 0 0px #9ed4ff;
box-shadow: 0 0 0px #9ed4ff;
border: 0px solid #558ab7 !important;
}
</style>
css 에 !important 가 적용되어 있는지 살펴보세요.
답변을 작성하시기 전에 로그인 해주세요.