CSS
input 중에 text 에 포커스 되면 border 색상을 변경
박성준
2016. 9. 30. 11:21
input[type=text]:focus {border:2px #FF0000 solid}
- [type=text] 속성 selector
- focus : 유사클래스
- focus : 포커싱 되었을 경우
- hovor : 마우스가 올라간 경우
- active : 활성화 된경우