Hi All,
Say I have a class name person with foll style in css-
.person { font: 10px Arial black; }
now if i want to assign as h1 tag to this class so for any instance of h1 tag in class person i want the some styles to be processed
i tried
.person h1 { color: red; }
but its not working.
Iam bit confused with the syntax