我想做这个
这是表单的选择下拉菜单
我的代码是
HMTL
<select>
<option>Country</option>
<option>India</option>
<option>USA</option>
</select>
CSS
select{
width:197px;
height:45px;
border:solid 1px #13669b;
box-shadow:0 5px 2px 0px rgba(0,0,0,0.06) inset;
background:rgba(256,256,256,0.7);
color:#13669b;
font-size:16px;
font-family: 'LatoBold';
padding:0 14px;
line-height:45px;
}
我想要这个只有纯 css。如何?