Бесплатный курс лекций по Python
Начало 11 декабря. Расписание: пн, чт в 20.15-21.00. Для записи вступи в канал →
⊗mkPmSlPCN 74 of 250 menu

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; }
swmsazitru