[CSS]select box 선택시 border줄 변경

해내면 그만!XX·2022년 6월 7일
0

select box 선택시 검은색 border가 기본인데 변경하고 싶을때 :focus 를 추가해서 border추가해서 변경한다.
selected, on 이런건 적용이 안됨.

.txt_select box {
    width: 250px;
    height: 35px;
    border-radius: 3px;
    border: 1px solid #bfbfbf;
}
    .txt_select:focus {
        border: 1px solid red;
        outline: none;
    }

0개의 댓글