Apply CSS to all classes
-
Hi, How could I force all tags of a type (e.g. div) apply a setting with any class that was declared for them?
Best wishes
-
Hi, How could I force all tags of a type (e.g. div) apply a setting with any class that was declared for them?
Best wishes
Just declare div in your style sheet-
div
{
font-size: 12pt;
}Good luck!
Ranjit Viswakumar Professional Services Specialist http://hostmysite.com/?utm\_source=bb
-
Hi, How could I force all tags of a type (e.g. div) apply a setting with any class that was declared for them?
Best wishes
you need classes like a { ...the style elements... } table { ...the style elements... } it needs to be in the .css file if thats now what you are looking for.. just type a class in the .css .. something like: .classname { ...the style elements... } after that in the html(asp.net) code use code like:
... content ...
hope it's useful modified on Sunday, February 8, 2009 4:16 PM
-
Hi, How could I force all tags of a type (e.g. div) apply a setting with any class that was declared for them?
Best wishes