본문 바로가기

css

[css] input 박스 클릭 시 생기는 테두리 없애는 방법

input 박스를 클릭 했을때 나오는 테두리 색상 변경

input:focus{
	outline: 2px solid #fff;
}


input 박스를 클릭 했을때 나오는 테두리 색상 없애기

input:focus{
	outline: none;
}