↓この画像の「テキストの上の余白」は仕様なので消せないのでしょうか。。
ここでの「テキストの上の余白」は、
画像の「絵画クラス」の上にある、
「青枠内の僅かな隙間」です。
marginやpaddingは関係ないと思いましたが、試しましたがダメでした。。
html
1<h1><span>絵画</span><span>クラス</span><span class="caption">3才〜小6</span></h1>
scss
1 2@mixin txt_ttl { 3 font-size: 36px; 4} 5@mixin txt-s { 6 font-size: 19px; 7} 8 9.center { 10 text-align: center; 11} 12.ttl_h1 { 13 @include txt_ttl; 14 position: relative; 15 text-align: center; 16} 17.caption { 18 @include txt-s; 19 position: absolute; 20 top: 100%; 21 right: 43%; 22}
h1を「GoogleChrome検証ツール」でクリックした時に出てくる画面はこちらです↓
回答2件
あなたの回答
tips
プレビュー