• @OscarPeace: remove top, left and right border. They are there by defaults. – pavel Dec 12 '17 at 20:01
  • [enter link description here](https://stackoverflow.com/questions/5755509/removing-grey-border-from-form-input-on-chrome) Here you can find the answer bro) – Garik Hovsepian Dec 12 '17 at 20:03
  • 1 Answers1

    1

    Like this:

    body {
      background: #000;
    }
    
    select {
      width: 100px;
      padding: 10px;
      border-width: 0;
      border-bottom: 2px solid white;
      background-color: black;
      color: white;
      outline: none;
    }
    <select>
      <option>One</option>
      <option>Two</option>
      <option>Three</option>
     </select>
    dom_ahdigital
    • 1,651
    • 18
    • 37