Size of Label
ASP.NET
2
Posts
2
Posters
0
Views
1
Watching
-
When I place Label or ant control on the webform and on run time when I change TextSize from View menu of Internet Explorer the controls size huld not be change.It should be constant
Hi, You need to use CSS. In the HTML view, add a STYLE tag within the HEAD tag.For example: .labelCSS { FONT-SIZE: 18px; FONT-FAMILY: Arial } Then, set the cssClass to the name of the css class that you chose (in this example labelCSS. In other words, in the cssClass property of the LAbel control type "labelCSS". Notice that there is no . (dot) in the cssClass property, only when you define the class in the style tag. If you have any question, check if I'm online in the chat room at www.kynou.com I hope I helped :)