Здравствуйте!
есть такая проблема:
есть два класс .class1 и .class2 у обоих есть теги h2,h3 так вот все теги находятся внутри блока так:
<div class="class1">
<h2></h2>
<h3></h3>
</div>
<div class="class2">
<h2></h2>
<h3></h3>
</div>
Так вот, теги h2 и h3 класса: class1 почему-то приняли значения класса: class2, в чем может быть причина?
css
.class1 h2,h3 {
width: 950px;
height: 70px;
display: inline-block;
margin: 25px auto;
padding: 0;
font-family: Century Gothic, sans-serif;
font-weight: bold;
font-size: 30px;
color: #284d88;
text-align: center;
}
.class2 h2,h3 {
display: inline;
margin: 20px 0;
padding: 0;
font-family: Century Gothic, sans-serif;
font-weight: bold;
font-size: 22px;
color: #284d88;
}