개인공간

[TIP] 셀렉트박스 디자인입히기 본문

IT정보/TIP

[TIP] 셀렉트박스 디자인입히기

천재소년s 2016. 12. 30. 14:13
반응형




.selects {
    position: relative;
    width: 200px;
    height: 40px;
    background: url(select_arrow.png) 180px center no-repeat; /* 화살표 이미지 */
    border: 1px solid #E9DDDD;
}
.selects label {
    position: absolute;
    font-size: 14px;
    color: #a97228;
    top: 13px;
    left: 12px;
    letter-spacing: 1px;
}
.selects select#color {
    width: 100%;
    height: 40px;
    min-height: 40px;
    line-height: 40px;
    padding: 0 10px;
    opacity: 0;
    filter: alpha(opacity=0); /* IE 8 */
}
jQuery(document).ready(function(){
    var select = $("select#color");
    select.change(function(){
        var select_name = $(this).children("option:selected").text();
        $(this).siblings("label").text(select_name);
    });
});


반응형