text-indent 대신 padding : 0 Xpx; 를 주면 된다.
.search input {
width: 180px;
height:50px;
border:1px solid #333;
border-radius:30px;
transition:all 0.2s;
box-sizing:border-box;
}
.search input {
width: 180px;
height:50px;
padding: 0 10px;
border:1px solid #333;
border-radius:30px;
transition:all 0.2s;
box-sizing:border-box;
}
'CSS' 카테고리의 다른 글
CSS의 7가지 단위 (0) | 2020.09.02 |
---|---|
:focus-within 으로 input 늘리기 (0) | 2020.09.02 |
HTML CSS 절대경로와 상대경로 (0) | 2020.09.02 |