Is this what you need?
select {
border: 0 none;
color: black;
background: transparent;
font-size: 14px;
padding: 6px;
width: 100%;
background: #58B14C;
text-indent: 50%;
}
#mainselection {
overflow: hidden;
width: 100%;
background: #4CAF50;
text-align: center;
}
select:hover {
text-shadow: 1px 1px red;
box-shadow:1px 1px red;
}
<div id="mainselection">
<select>
<option>Select options</option>
<option>1</option>
<option>2</option>
</select>
</div>
solved Select menu CSS [closed]