CSS Property Conflict Notice
What was described in the previous lesson applies only to property conflicts. That is, to the case when both the first and the second selector have the same properties. If the properties are different, then the properties of both selectors will simply be applied.
Tell us what properties will be applied to the headings and what the values of these properties will be:
<h2>text</h2>
h2 {
font-size: 20px;
color: blue;
}
h2 {
font-style: italic;
color: red;
}