Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="How to style a select">
  <meta charset="utf-8">
  <title>Style a select</title>
</head>
<body>
    <select>
            <option>CoffeeScript</option>
            <option selected>JavaScript</option>
            <option>CPP</option>
            <option>Pyhton</option>
    </select>   
</body>
</html>
 
select {
   margin: 50px;
    border: 1px solid #111;
   background: transparent;
   width: 150px;
   padding: 5px 35px 5px 5px;
   font-size: 16px;
   border: 1px solid #ccc;
   height: 34px;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
    background: url(https://jsbin.com/favicon.ico) 100px no-repeat #eee;
}
Output 300px

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
AndersonFirminopro
0viewers