私の現在のプロジェクトは完全にemsに基づいています。
html
<div class="tiny">
This is some tiny text which is tiny.
</div>
<div class="small">
This is some small text which is small.
<div class="tiny">
And this is some tiny text inside small text which should be as tiny as the other tiny one.
</div>
</div>
css
.tiny {
font-size:0.7em;
line-height:1.7;
}
.small {
font-size:0.8em;
line-height:1.3em;
}
この場合、tiny
テキスト内のsmall
テキストは通常のtiny
テキストよりも小さくなります。
まず、それはなぜですか?次に、これを修正したり、同じサイズにする方法はありますか?
前もって感謝します!