【質問】Flexalign-content: center;
を使っても縦の中央に出力できません。なぜでしょうか?
--------------------------------------------------------------↑これを
--------------------------------------------------------------↑こうしたい
<div class="contents-wrapper"> <div class="description-container"> <div class="description-icon"> <img src="123456789.jpg" alt=""> </div> <!--ここから--> <div class="description"> <h2>出張先でも、アットホーム</h2> <p>出張のときも、新天地に異動のときも安心。他の出張者が5つ星評価をつけたお部屋やデザイナーズホテルを探しましょう。</p> <a href="#">仕事用スペースを完備した宿泊先を検索</a> </div> <!--ここまで のテキストを縦の中央に揃えたい--> </div> </div>
.contents-wrapper{ width: 100%; height: 1590px; margin-top: 60px; } .description-container{ width: 100%; height: 500px; display: flex; justify-content: space-evenly; } .description-container:nth-child(even){ flex-direction: row-reverse; } .description-icon{ width: calc(42% - 30px); height: calc(100% - 20px); } .description-icon img{ width:100%; object-fit: cover; height: 100%; } .description{ width: calc(58% - 30px); height: calc(100% - 20px); padding-left:155px; padding-right:155px; align-content: center; /* ←これが効かない*/ }
以上、よろしくお願いします。
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/11/19 05:35