Not an expert yet in CSS so i have stupid question…
Lets say i make a class. I assign the class to a table tag. I want somehow the class to be able to define what the td tag of the table properties are (bgcolor, align, ect, ect). To my moderate knowledge of CSS that is not possible, but i would think there should be a way.
I know you can globally assign a propertie to a specific tag, I.E.:
style
td {
background-color: red;
}
/style
But can you do that from ‘inside’ a class?
EDIT:
I bumped off the <> on the style tags cause it was styling the page…lol
now everything in that table will take on the attributes of your CSS class, which overrides anything else you’ve tried to do to it… say like width and height, the CSS will take over.