Is it possible to change the style of the border and button on a <select> box in a <form>?
Using BORDER: or BORDER-STYLE doesn't work.
I want to try and change them to A: fit in with the rest of my site, and B: because they look damn ugly!
Any ideas?
Styling a <form> <select> drop-down
Moderator: General Moderators
yes, they can be ugly depending on one's layout. Unfortunatly they are hardly styleable. Try thisin ie, mozilla & opera and all fun is history
googleling around I found this site: http://sangrea.net/gspot/dropdowns.php
worth a visit
Code: Select all
<html>
<head>
<style type="text/css">
select { color: white; background-color: blue;
border-color: red; line-height: 1cm;
}
</style>
</head>
<body>
<form>
<select>
<option>one</option>
<option>two</option>
<option>three</option>
</select>
</form>
</body>
</html>googleling around I found this site: http://sangrea.net/gspot/dropdowns.php
worth a visit