前提・実現したいこと
display: flex;で指定したボックスに対して
justify-content: space-around;を適用させたい
発生している問題・エラーメッセージ
justify-content: ;が効かない
該当のソースコード
HTML
1<div class="flex-container"> 2 <div class="left"> 3 <div class="title">文字です。文字です。文字です。</div> 4 <p class="desc"> 5 文字です。文字です。文字です。文字です。文字です。 6 </p> 7 </div> 8 <div class="right"> 9 <div class="title">文字です。</div> 10 <p class="desc"> 11 文字です。文字です。文字です。文字です。 12 </p> 13 </div> 14</div>
CSS
1.flex-container{ 2 display: flex; 3 align-items: center; 4 justify-content: space-around; 5 height: 200px; 6 margin-top: 30px; 7 width: 80%; 8} 9.flex-container .left{ 10 margin-right: 60px; 11} 12.flex-container .title{ 13 font-size: 2.4rem; 14 margin-bottom: 20px; 15 font-weight: 700; 16 letter-spacing: 0.05em; 17} 18.flex-container .desc{ 19 font-size: 1.6rem; 20 letter-spacing: 0.05em; 21 line-height: 2rem; 22}
試したこと
他の部分のcssの見直し
補足情報(FW/ツールのバージョンなど)
ここにより詳細な情報を記載してください。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。