画像とテキストを並べて真ん中寄せにしたいです。
記載したのように並べたいのですが、うまく綺麗に縦中央になりません。
2日かけてたくさん調べましたが、分かりませんでした。
詳しい方、お力添え願います。
HTML
1<div class="section2-flexbox"> 2 3 <div class="section2-container flexbox"> 4 5 <img src="../アイコン素材/icon/me2.svg" alt="imacのロゴ"> 6 7 </div> 8 9 <div class="section2-container-text flexbox"> 10 <h3>えみ</h3> 11 <p>客先常駐で基幹系のヘルプデスクをしています。 時間や場所にとらわれない働き方をしたくて、Web系言語の勉強開始。 小さい頃から、1から何かを作ることが好きで、プログラミングの勉強が楽しいです。</p> 12 13 14 </div> 15 16 17 18 19 20 21 </div>
CSS
1 .section2-flexbox { 2 width: 80%; 3 display: flex; 4 justify-content: space-between; 5 margin: 0 auto; 6 text-align: center; 7 /* background-color: darkgreen; */ 8 } 9 10 .section2-container{ 11 width: 400px; 12 display: flex; 13 justify-content: center; 14 } 15 16 .section2-container img{ 17 width: 400px; 18 } 19 20 21 .section2-container-text { 22 width: 40%; 23 margin-right: 10%; 24 background-color: darkorange; 25 } 26 27 .section2-container-text h3{ 28 font-size: 2.2rem; 29 /* background-color: blue; */ 30 text-align: left; 31 } 32 33 .section2-container-text p { 34 font-size: 1.8rem; 35 line-height: 2; 36 text-align: left; 37 background-color: #d8b90b; 38 } 39 40 .flexbox{ 41 display: flex; 42 align-items: center; 43 }