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 John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

color of an input box

Status
Not open for further replies.

BLKDAWG

Technical User
Aug 24, 2001
10
US
Is there a way to change the color of an input box? I would like to leave the center white, but change the color of the edges? Thanks.
 
you could make a class for it


input.register {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
color: #3F3F3F;
border: 1px outset #0066CC;
background-color: #F3F5F5;

}


<input name=&quot;phone&quot; type=&quot;text&quot; class=&quot;register&quot; id=&quot;phone&quot; />

<signature>
sometime you just gotta say &quot;WHAT THE @#*% !!&quot;
</signature>
 
+ search the forum before posting!

> need more info?
:: don't click HERE ::
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top