I have seen many time whenever we try to apply css classes to the the multi line text of asp.net. It does not work.
It may happened due to the browser treat that text box as the text area. So you can do it with defining text area element in css and it will automatically apply to the multi line text box.
For example.
text area
{
border:#CCCCCC 1px solid;
font-size:10px;
vertical-align:middle;
}
If still it is not working that you can set directly attributes with property such as font,font size etc.
Wednesday, April 25, 2007
take the space out of text area:
ReplyDeletetextarea
{
font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
font-size: 12px;
}
evn after removing space this is not working
DeleteCan you provide me example or source code?
Delete