faqts : Computers : Programming : Languages : JavaScript : Forms : SELECT

+ Search
Add Entry AlertManage Folder Edit Entry Add page to http://del.icio.us/
Did You Find This Entry Useful?

7 of 8 people (88%) answered Yes
Recently 7 of 8 people (88%) answered Yes

Entry

How do I get a <select><option> to be a monospaced font

Apr 8th, 2003 12:56
jsWalter, Ken Brill,


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<style>
SELECT
{
	font-family: courier;
}
</style>
<html>
<body>
<select>
	<option>The First
	<option>The Second
	<option>The Third
</select>
</body>
</html>