If you want to make it fully transparent, than use
select {
border: 1px solid #fff;
background-color: transparent;
}
Demo
If you are looking to have semi-transparent background color, than you can use rgba()
where a
stands for alpha
select {
border: 1px solid #fff;
background-color: rgba(255,255,255,.5);
padding: 5px;
}
Demo 2
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…