| Refresh | Home EGTry.com

styles of combo box (select)


CommentsHTML sourcedisplay in your current browser
	<select style="color:#f00">
		<option>color:#f00</option>
		<option>color of item text</option>
	</select>

	<select style="background-color:#eee">
		<option>background-color:#eee</option>
		<option>background color</option>
	</select>

	<select style="border-width:10px; border-color:#000">
		<option>border-width:10px; border-color:#000</option>
		<option>border width and color</option>
	</select>

	<select style="border:0">
		<option>border:0</option>
		<option>no border</option>
	</select>

	<select style="text-align:center">
		<option>text-align:center</option>
		<option>center</option>
	</select>

	<select style="padding:10px">
		<option>padding:10px</option>
		<option>works for Firefox</option>
	</select>