simplify
h1 = 1÷4×h2.
Answers
Answered by
1
Answer:
hope it would be helpful for u
Step-by-step explanation:
like to target all h tags on a page. I know you can do it this way...
h1,
h2,
h3,
h4,
h5,
h6 {
font: 32px/42px trajan-pro-1,trajan-pro-2;
}
but is there a more efficient way of doing this using advanced CSS selectors? e.g something like:
[att^=h] {
font: 32px/42px trajan-pro-1,trajan-pro-2;
}
The new :is() CSS pseudo-class can do it in one selector:
:is(h1, h2, h3, h4, h5, h6) {
color: red;
}
Similar questions