前提・実現したいこと
ddタグの要素の高さを24pxから32pxに変えたい。
発生している問題・エラーメッセージ
模写をしておりますが、font系プロパティ(size,family,weight)、line-heightを模写サイトと同じ値にしているのにddタグの要素の高さが合わないです。
該当のソースコード
HTML
1<section class="location"> 2<h2 class="sec-tit">Location</h2> 3<div class="location-inner"> 4<dl class="location-def"> 5<dt class="location-dtit"><span>LOCATION</span></dt> 6<dd class="location-data"><span>location.location.location.location.location.(<a href="" class="location-btn">地図</a>)</span></dd> 7 8</dl> 9<dl class="location-def location-margin"> 10<dt class="location-dtit">LOCATION</dt> 11<dd class="location-data"><span>location.location.location.location.location.(<a href="" class="location-btn">地図</a>)</span></dd> 12 13</dl> 14<dl class="location-def location-margin"> 15<dt class="location-dtit">LOCATION</dt> 16<dd class="location-data"><span>location.location.location.location.location.(<a href="" class="location-btn">地図</a>)</span></dd> 17</dl> 18</div> 19</section><!-- /location -->
CSS
1html { 2 font-size: 62.5%; 3} 4 5body { 6 margin: 0; 7 padding: 0; 8 font-size: 100%; 9 height: 100%; 10 font-family: arial, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Kozuka Gothic Pr6N", "小塚ゴシック Pr6N", Verdana, sans-serif; 11} 12 13.location { 14 padding: 50px 20px 30px 20px; 15 width: 100%; 16 position: relative; 17 box-sizing: border-box; 18} 19 20.location-inner { 21 width: 100%; 22 max-width: 1140px; 23 margin: 0 auto; 24 padding: 0; 25} 26 27.location-def { 28 margin: 0; 29 width: 100%; 30 padding: 20px 16px 20px 20px; 31 position: relative; 32 background: #f3f3f3; 33 font-weight: 500; 34 box-sizing: border-box; 35} 36 37.location-margin { 38 margin-top: 16px; 39} 40 41.location-dtit { 42 left: 30px; 43 font-weight: 600; 44 letter-spacing: 0.6px; 45 font-size: 1.6rem; 46 margin: -0.5em 0 0; 47 position: absolute; 48 color: #282828; 49 top: 50%; 50 line-height: 1; 51} 52 53.location-data { 54 margin: 0 0 0 200px; 55 word-wrap: break-word; 56 font-size: 1.6rem; 57 color: #282828; 58 font-weight: 500; 59} 60 61.location-btn { 62 line-height: 1.5; 63 color: #008cb2; 64}
試したこと
heightを32pxにし、vertical-align:middle;を指定する➡️模写サイトと比べてテキストの位置がずれる。
テキストを模写サイトと同じ内容にする➡️効果なし
その他『fontサイズを変えずに要素の高さを変える』など調べましたが、解決に至るサイトが見つかりませんでした。
補足情報(FW/ツールのバージョンなど)
模写サイトと同じようにしたいのでfont系プロパティ(size,family,weight)やline-heightの値は変更せず、ddタグの高さを変えたいです。
模写サイト
https://galera.co.jp/#0
初心者のとても未熟な質問ですがどなたかご教授いただければ幸いです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/18 00:06