前提・実現したいこと
FLOWERの模写をしてます。FLOWER
レスポンシブの際に画像がつぶれてしまいます。
場所は<!--sec3-1img--> の画像です。 宜しければお願い致します。
html
1<!--省略--!> 2 <!-- section3 --> 3 <div class="row section3 no-gutters "> 4 5 <!-- sec3-1 --> 6 <div class="col-md-6 sec3-1bg "> 7 <div class="sec3-1"> 8 9 10 <h1>選べるボリューム</h1> 11 12 <!-- sec3-1img --> 13 14 <div class=" sec3-1img"> 15 <div class=" sec3-1-1img"></div> 16 17 <div class="sec3-1-2img"> 18 <div class=" sec3-1-3img"></div> 19 </div> 20 </div> 21 22 23 <div class="sec3-1p"> 24 <p>価格は税抜きです。</p> 25 <p>送料は360円(税別)です。</p> 26 <p>プランは注文するたびに変更できます。</p> 27 </div> 28 29 </div> 30 31 </div> 32 <div class="col-md-6 sec3-2"> 33 34 </div> 35 36 </div> 37 38 </div> 39 40</body> 41 42</html> 43
css
1 2 3 4/* ------------------section3----------------------*/ 5.section3{ 6height: 60vh; 7 8} 9 10/* sec3-1 */ 11.sec3-1bg{ 12 background-color: #f5f5f5; 13 14 15} 16 17.sec3-1{ 18 padding: 7rem 17rem; 19} 20 21/* sec3 h1 */ 22.sec3-1 h1{ 23 font-size: 2.6rem; 24 line-height: 4.2rem; 25 margin-bottom: 1.5rem; 26 text-align: center; 27} 28 29/* sec3 p */ 30.sec3-1p p{ 31 font-size: 1.3rem; 32 line-height: 1rem; 33 text-align: left; 34 35 36} 37 38 39.sec3-1p { 40 margin-top: 2.5rem; 41padding: 0rem auto ; 42} 43 44 45/* sec3 img */ 46.sec3-1img{ 47display: flex; 48justify-content: center; 49} 50 51.sec3-1-1img{ 52 background-image: url(img/plan_flower.png); 53 background-size: 10rem 18rem; 54 background-repeat: no-repeat; 55 background-color: white; 56 width: 19rem; 57 height: 25rem; 58 border-radius: 1rem; 59 margin-right: 1.5rem; 60 background-position: center; 61 position: relative; 62} 63 64 65.sec3-1-2img { 66 background-image: url(img/plan_flowers.png); 67 background-size: 10rem 18rem; 68 background-repeat: no-repeat; 69 background-color: white; 70 width: 19rem; 71 height: 25rem; 72 border-radius: 1rem; 73 background-position: center; 74 75 76} 77 78.sec3-1-3img { 79 position: relative; 80 background-image: url(img/plan_free.png); 81 background-size: contain; 82 background-repeat: no-repeat; 83 width:7rem; 84 height:7rem; 85 left: 76%; 86 top:-8% 87} 88 89.sec3-1-3img img{ 90 position: absolute; 91 width: 7rem; 92 left: 70%; 93 top: 20%; 94 95} 96 97 98
試した事
CSS部分の
.sec3-1{ padding: 7rem 17rem; }
から
.sec3-1{ padding: 7rem auto;
にすれば画像はつぶれないですがpが左端に寄ってしまいます。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/04/10 06:02