前提・実現したいこと
question_number
クラスの要素を上に押し上げたいと考えています。
具体的には、数字の「2」の真横辺りに配置したいです。
該当のソースコード
html
1<!DOCTYPE html> 2<html lang="ja"> 3<head> 4 <meta charset="UTF-8"> 5 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 6 <link rel="stylesheet" href="./css/style.css"> 7 <title>Document</title> 8</head> 9<body> 10 <div class="main_content"> 11 <p> 12 <span class="question_number">(1)</span> 13 <span class="question_text">2 + 1 = </span> 14 <input type="text" class="answer_box"> 15 </p> 16 <p> 17 <span class="question_number">(2)</span> 18 <span class="question_text">3 + 1 = </span> 19 <input type="text" class="answer_box"> 20 </p> 21 <p> 22 <span class="question_number">(3)</span> 23 <span class="question_text">4 + 1 = </span> 24 <input type="text" class="answer_box"> 25 </p> 26 </div> 27</body> 28</html>
css
1 2body{ 3 background-color: #E5E2DE; 4} 5.main_content{ 6 width: 30%; 7 margin:0 auto; 8 margin-top:3%; 9} 10.question_number{ 11 color:#959492; 12 margin-right:5%; 13 margin-bottom:1%; 14} 15.question_text{ 16 font-size:3rem; 17}
試したこと
question_number
の要素に対して、margin-bottom
及びpadding-bottom
を設定したのですが、要素が上に押し上げられない状況です。
どなたか、ご助言頂けましたら幸いです。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/12/16 03:54