Toggle navigation
Genres
Frontend (2)
JavaScript (6)
Database (2)
Linux Server (3)
Web Apps (4)
Misc (4)
Search
List
New Tutorials
Last Modified Tutorials
</>
Code examples
code
smiko
frontend
html
examples
forms
18select_css_styling.html
18select_css_styling.html
<!DOCTYPE HTML> <html lang="hr"> <head> <meta charset="UTF-8"> <title>Select - CSS styling</title> </head> <body> <form action="" method="POST" enctype="application/x-www-form-urlencoded"> city: <br> <select name="town" style="width:210px;height:30px;font:15px Verdana;"> <option value="Našice">Našice</option> <option value="Budapest">Budapest</option> <option value="Osijek" selected>Osijek</option> <option value="Trakošćan">Trakošćan</option> </select> </form> </body> </html>
Reload page
Preview
W3C validation
Edit Code