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

Flat input boxes (CSS Newbie) 1

Status
Not open for further replies.

SteveBrett

Programmer
Apr 24, 2000
107
MT
I need to have a style sheet that has flax input boxes. I've got it to work so that they are all flat, with a 1pt border but only need it for text boxes and not for radio buttons and checkboxes etc.

Is there any way to filter it ?

Thanks in advance

Steve
 
Just use seperate classes...

Code:
<html>
<head>
<style type=&quot;text/css&quot;>
input.text {
border: 1px solid black;
}
</style>
</head>
<body>
<form>
<input class=&quot;text&quot; type=&quot;text&quot; value=&quot;submit&quot;>
</form>
</body>
</html>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top