티스토리 뷰
검색창에 이모티콘 넣는 법
<div class="search-bar">
<i class="fas fa-search"></i>
<input class="search-bar__input" type="search" placeholder="검색" />
</div>
이모티콘과 input 기능이 함께 나오는데 검색창 안으로 넣고 싶을 때는
.search-bar {
width: 220px;
height: 27px;
border-radius: 5px;
border: solid 1px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
opacity: 1;
}
먼저 search-bar 의 너비 , 높이 그리고 flex 를 사용하고 center를 사용합니다
그 이후
.search-bar__input {
width: 50px;
}
width 값을 주어서 search-bar 보다 작게 하여 center에 위치하게 하며
/* .search-bar__input {
width: 50px;
border: none; // 검색창 border 을 없앰으로써 자연스러워짐
-webkit-appearance: none; // 기본 search 디자인을 없앰
text-align: center;
margin-left: 10px;
overflow: auto; //검색어가 길어졌을때 오른쪽으로 자연스럽게 검색되도록 하기 위해
z-index: -1;
font-size: 15px;
} */
최종적으로
.search-bar {
width: 220px;
height: 27px;
border-radius: 5px;
border: solid 1px rgba(0, 0, 0, 0.3);
display: flex;
justify-content: center;
align-items: center;
z-index: 1;
opacity: 1;
}
.search-bar__input {
width: 50px;
border: none;
-webkit-appearance: none;
text-align: center;
margin-left: 10px;
overflow: auto;
z-index: -1;
font-size: 15px;
}
.search-bar__input:focus {
outline: none;
width: 300px;
text-align: left;
}
.fa-search {
font-size: 15px;
}
'Html,Css > Css' 카테고리의 다른 글
css :Grid Rows and Columns (0) | 2021.10.18 |
---|---|
css : Grid Template Areas (0) | 2021.10.15 |
css)overflow 에서 scroll 스크롤바 숨기기 없애기 방법 (스크롤 동작) (0) | 2021.05.26 |
CSS) Pseudo Selector(의사선택자)란 (0) | 2021.05.21 |
CSS)name과 id의 차이 그리고 class (0) | 2021.05.09 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 아차산
- javascript
- 윤성우 열혈C프로그래밍
- import/order
- 우아한테크코스
- NextRequest
- 초보
- 노개북
- 원티드
- 노마드코더
- WSL2
- React
- 프리온보딩
- env
- Storybook
- NextApiRequest
- createPortal
- nodejs
- C언어
- 스토리 북
- 위코드
- jest
- 프론트앤드
- TopLayer
- nextjs
- CLASS
- electron
- 북클럽
- error
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함