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

How to make text in Textarea render the same as input tag

Status
Not open for further replies.

crusader

Programmer
Apr 26, 2001
24
GB
Hi,

Does anyone know how to make the input text in a Textarea the same as text in an input tag?
I have applied the same style sheet attributes to both the different tags but the rendering of the text still looks slightly different!
Here are my styles:
.inputText
{
border-width:1px;
border-style:solid;
border-color:#4682b4;
background-color:#fffaf0;
width:250px;
font-weight:bold;
color:#333366;
letter-spacing:0em;
padding-left:4px;
}

.textAreaText
{
border-width:1px;
border-style:solid;
border-color:#4682b4;
background-color:#fffaf0;
width:250px;
font-weight:bold;
color:#333366;
letter-spacing:0em;
padding-left:4px;
}

Thanks... >>Crusader!
 
Ahh,

Excellent that did the trick.....
Thank you!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top