画像の通り、リストの最後の行の文章が下にズレてしまいます。
コードは以下になります。
CSS
1.box29 { 2 margin: 2em 0; 3 background: #dcefff; 4} 5.box29 .box-title { 6 font-size: 1.2em; 7 background: #5fb3f5; 8 padding: 4px; 9 text-align: center; 10 color: #FFF; 11 font-weight: bold; 12 letter-spacing: 0.05em; 13} 14 15.box29 ol { 16 counter-reset:number; /*数字をリセット*/ 17 list-style-type: none!important; /*数字を一旦消す*/ 18 padding:0.5em; 19 background: #f5faff; 20} 21.box29 ol li { 22 position: relative; 23 padding-left: 30px; 24 line-height: 1.5em; 25 padding: 0.5em 0.5em 0.5em 30px; 26} 27 28.box29 ol li:before{ 29 /* 以下数字をつける */ 30 position: absolute; 31 counter-increment: number; 32 content: counter(number); 33 /*以下数字のデザイン変える*/ 34 display:inline-block; 35 background: #5c9ee7; 36 color: white; 37 font-family: 'Avenir','Arial Black','Arial',sans-serif; 38 font-weight:bold; 39 font-size: 15px; 40 border-radius: 50%; 41 left: 0; 42 width: 25px; 43 height: 25px; 44 line-height: 25px; 45 text-align: center; 46 /*以下 上下中央寄せのため*/ 47 top: 50%; 48 -webkit-transform: translateY(-50%); 49 transform: translateY(-50%); 50}
HTML
1<div class="box29"> 2<div class="box-title">おすすめポイント</div> 3<ol> 4<li>文章文章文章</li> 5<li>文章文章文章文章</li> 6<li>文章文章文章文章</li> 7</ol> 8</div>
原因が分からず困り果てております。
初歩的な質問になってしまっていると思いますが、ご回答頂けますと幸いです。
※追記
wordpressテーマのスタイルシートに、以下のような記述がありました。こちらも関係してくるのでしょうか?
CSS
1ol { 2 list-style-type: decimal; 3 padding-top: 10px; 4 padding-right: 10px; 5 padding-bottom: 20px; 6 padding-left: 30px; 7 margin-bottom: 20px; 8} 9 10ol li { 11 font-size: 17px; 12 line-height: 27px; 13}
追記②
リストの②(2行になっている行)を本来は画像1枚目のように表示したいのですが、画像2枚目のように、文字の真ん中に数字が移動してしまいます。何か解決法はありますでしょうか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/07/24 08:07 編集
2020/07/24 08:23
2020/07/25 01:29