1
我試圖在Angular中使用scss來改變h3標籤的邊距。 scss正在工作,但是當我將h3嵌套在div標籤中時,它不起作用。scss中嵌套的h3不起作用
有人能指出我正確的方向嗎?
SCSS
// Does not work
.subTitle {
h3 {
margin-top: 1px;
}
}
// Works
h3 {
margin-top: 1px;
}
HTML
<div class="row">
<div *ngFor="let post of allPosts" class="col-md-12 blogPost">
<div id="title"><h1>{{post.title}}</h1></div>
<div id="subTitle"><h3>{{post.subTitle}}</h3></div>
<div id="blogContent"><p>{{post.content}}</p></div>
</div>
</div>
JS
使用dev工具欄來檢查輸出html dom的樣子(檢查角度如何爲您生成DOM)。 – Dekel