初歩的な質問ですが。。
Bootstrapにて上下左右中央寄せにしようとしていますが、justify-contentやalign-middleなどを使っても効きません。
お分かりになる方、ご教授頂けますでしょうか?
CSS
1.main { 2 flex: 1; 3 background:url("/assets/svg/secret.svg") no-repeat; 4 background-size: 100% auto; 5 margin-top:15px; 6}
HTML
1 <div class="main container"> 2 <div class="row d-flex justify-content-center"> 3 <section class="col-lg-6 text-white text-center"> 4 <h1>@yield('title')</h1> 5 <p class="error-message">@yield('message')</p> 6 <p class="error-detail">@yield('detail')</p> 7 @yield('link') 8 </section> 9 </div> 10 </div>
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/06/03 07:37
2020/06/03 08:44 編集