D3
OG
Old school D3 from simpler times
All examples
By author
By category
About
AndersonFirmino
Full window
Github gist
JS BinHow to style a select// source https://jsbin.com/neyola/edit?html,css,output
<!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>