본문 바로가기

tip

input박스 100%로 사이즈 자동 조절 팁

반응형

#20230113

유독 이 검색어로 유입이 많이 되서, 몇년만에 추가로 글을 써본다.

요새는 대부분 브라우저나 모바일 작업이 많다보니

display:flex 속성 써서 자동으로 알아서 꽉차니 그걸 추천함

 

See the Pen display: flex input by banisle (@banisle) on CodePen.

 

 

input감싸고 있는 태그에 display:block속성에 margin으로 좌우를 조절한다.

 

<span class="search_in"><input type=""></span>

 

<style>

.search_in{display: block;margin: 4px 79px 0 10px;} 파란색으로 조절한다. 

.search_in input{

width:100%

}

</style>

 

자동으로 인풋사이즈 확장됨

반응형