简单的select美化

今天一个小页面加个select,默认的太丑,这个页面有没有引入其他文件(连jq都没...)然后查了查有没有超简单的美化,其中两个挺好的记录下


一、纯css+html 简单美化select

html:

 


CSS:
.shortselect{  
    background:#fafdfe;  
    height:28px;  
    width:180px;  
    line-height:28px;  
    border:1px solid #9bc0dd;  
    -moz-border-radius:2px;  
    -webkit-border-radius:2px;  
    border-radius:2px;  
}  

二、css+js+html 请移步查看:

http://www.dowebok.com/demo/196/

你可能感兴趣的:(html,css,js)