Dropdown CSS
by JQ Purfect
HTML
<div class="styled-select">
<select>
<option>Session ID: xxxxxxxxx</option>
<option>Password: xxxxxxxxx</option>
</select>
</div>
<!--
<div>
<select>
<option>Here is the first option</option>
<option>The second option</option>
</select>
</div>
-->
CSS
.styled-select {
width: 255px;
height: 34px;
overflow: hidden;
background: url(http://www.xdweb360.com/wp-content/uploads/icon-details.png) no-repeat left #08A5E1;
background-position:5px;
border: 1px solid #ccc;
}
.styled-select select {
background: transparent;
width: 240px;
padding: 5px;
border: 0;
border-radius: 0;
font-size: 16px;
line-height: 1;
height: 34px;
-webkit-appearance: none;
margin-left: 40px;
color: #fff;
}
.option{
height 50px;:
}