以下のコードを参照してください。クラス<h1>
を使用したいのですが、.page-header h1
#main h1
変更せずにそれを防ぐ方法は#main h1
?
<div id='main'>
<div class="page-header">
<h1>This is a title</h1>
</div>
</div>
css
#main h1 {
line-height: 30px;
font: 28px Arial, Helvetica, sans-serif;
color: #333;
font-weight: 300;
}
.page-header h1 {
color: white;
font-size: 28px;
line-height: 20px;
margin: 12px 0 11px 11px;
}