Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Displaying colors in a dropdown menu 1

Status
Not open for further replies.

sthmpsn1

MIS
Sep 26, 2001
456
0
0
US
Is there a way to create a drop down menu that shows colors in it
 
what do you mean by colors -- you could use CSS and define a background color and then define font color

Sometimes the Answer You Are LOOKING for can be FOUND BY SEARCHING THE FAQ'S @&%$*#!!!
 
Is this what you are looking for:

<html>
<body>

<form>
<select name=&quot;colors&quot;>
<option value=&quot;red&quot;>Red
<option value=&quot;blue&quot;>Blue
<option value=&quot;green&quot;>Green
<option value=&quot;yellow&quot;>Yellow
</select>
</form>

</body>
</html>
 
Well what if you wanted each word to be that color. Like you wanted Red to be the color red?
 
To assign font colors do this:

<html>
<body>

<form>
<select name=&quot;colors&quot;>
<option value=&quot;red&quot; style=&quot;color:red;&quot;>Red</option>
<option value=&quot;blue&quot; style=&quot;color:blue;&quot;>Blue</option>
<option value=&quot;green&quot; style=&quot;color:green;&quot;>Green</option>
<option value=&quot;yellow&quot; style=&quot;color:yellow;&quot;>Yellow</option>

</select>
</form>

</body>
</html>

Mike Diaz...
 
Or you can go all out colory:
Code:
<html>
<body>

<form>
<select name=&quot;colors&quot;>
<option value=&quot;red&quot; style=&quot;color:red; background: red;&quot;>Red</option>
<option value=&quot;blue&quot; style=&quot;color:blue; background: blue;&quot;>Blue</option>
<option value=&quot;green&quot; style=&quot;color:green; background: green;&quot;>Green</option>
<option value=&quot;yellow&quot; style=&quot;color:yellow; background: 
yellow;&quot;>Yellow</option>

</select>
</form>

</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top