Source Code:
(back to article)
Submit
Result:
Report an issue
<!DOCTYPE html> <html> <head> <title>Title of the document</title> <style> .dropdown { width: 100% } select { -webkit-appearance: none; appearance: none; } @-moz-document url-prefix() { .dropdown { border: 1px solid #000; border-radius: 4px; box-sizing: border-box; position: relative; overflow: hidden; } .dropdown select { width: 110%; background-position: right 30px center !important; border: none !important; } } </style> </head> <body> <div class="dropdown"> <select> <option>Learn HTML</option> <option>Learn CSS</option> <option>Learn Git</option> <option>Learn JavaScript</option> <option>Learn PHP</option> </select> </div> </body> </html>