input 눌렀을 때 생기는 기본 파란선 없애고 싶을 때,
input{
outline:none;
box-shadow:none;
}
input창을 클릭하는 그 찰나에 색 바꾸고 싶을 때
input:active{
border-color: ;
}
focus 됐을 때 border 색 바꾸고 싶을 때
input:focus{
bordr-color:#fff;
}
'CSS > learned_it_today' 카테고리의 다른 글
가로배치(inline, inline-block, flex, grid, float) (0) | 2020.10.21 |
---|---|
ul {list-style-type:none, padding:0;} (0) | 2020.10.21 |
CSS Grid 수업 필기(5) Media Queries & The Grid (0) | 2020.07.06 |
CSS Grid 수업필기 (4) - Grid Template Areas (0) | 2020.07.06 |
CSS Grid 수업 필기(2) Spanning Columns and Rows (0) | 2020.07.05 |