CSS 셀렉트박스 커스텀

셀렉트박스 커스텀

안드로이드 4.x stock 브라우저에서는 flex 사용 불가로 인해 아래와 같이 구현해야 합니다.

1
2
3
4
5
<div class="selectbox">
<div class="selctbox__text">
셀렉트박스 텍스트
</div>
</div>
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
.selectbox {
width: 100%;
height: 56px;
margin-top: 10px;
background-color: #ffffff;
border: 1px solid #e6e6e6;
position: relative;
padding-left: 16px;

&__text {
line-height: 56px;
width: 90%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}

&:after {
content: url("../images/arrow_list_02.svg");
display: inline-block;
position: absolute;
right: 16px;
top: 50%;
margin-top: -10px;
height: 16px;
width: 16px;
}
}