Forum Moderators: not2easy
#three_fourths_text h1,
#three_fourths_text h2,
#three_fourths_text h3 {
color: #fbfbfb;
}
.three_fourths_text_headers {
color: #fbfbfb;
}
#three_fourths_text {
h1,
h2,
h3 {
color: #fbfbfb;
}
}
If I understand correctly, you're asking if there's a shorthand way to target all h1, h2, and h3 elements within the #three_fourths_text.
#three_fourths_text h1,
#three_fourths_text h2,
#three_fourths_text h3 {
color: #fbfbfb;
}
#three_fourths_text > h1, h2, h3 {color: #fbfbfb;}
#three_fourths_text h* {color: #fbfbfb;}
I guess I was HOPING there would be a way to go like:#three_fourths_text > h1, h2, h3 {color: #fbfbfb;}
or something like this:#three_fourths_text h* {color: #fbfbfb;}
span.red {color: blue;} {color: #fbfbfb;}