Alternative:
Code:
<html>
<head>
<title>Select Box</title>
</head>
<body>
<select size="3">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
</body>
</html>
The highlighted code may be changed to fit your wants/needs. This is the height of the box after it is dropped down. I don't know if this is what you wanted or not. You can also use margin:
Code:
<html>
<head>
<title>Select Box</title>
</head>
<body>
<select style="margin:20px;">
<option>A</option>
<option>B</option>
<option>C</option>
</select>
</body>
</html>
The highlighted code may be changed, again. This will do something. Test it out.
-magicyte
Bookmarks