前提・実現したいこと
こんにちは。
アイコンを中心にしたいですが反映されず困っています。
発生している問題・エラーメッセージ
スクショです。アイコンを中心にしたいですがスクショのように左揃えになり反映されません。
該当のソースコード
welcome.blade.php <footer class="row no-gutters"> <div class="card mt-5 mx-auto col-md-9 col-md-offset-3"> <div class="h2 card-header text-center back-color-gradient"> <section id="contact">お問い合わせ</section> </div> <div class="card-body text-center"> <h4>メールまたはツイッターDMでご連絡ください。</h4> </div> <ul class="list-inline mb-5 d-flex "> <li> <a href="#"> <div class="navbar-brand-gmail"></div> </a> </li> <li> <a href="#"> <div class="navbar-brand-twitter d-block m-auto"></div> </a> </li> <li> <a href="#"> <div class="navbar-brand-github"></div> </a> </li> </ul> </div> </footer>
welcome.css
1/* お問い合わせ CSS */ 2.navbar-brand-gmail { 3 background: url("../images/gmail--v2.png") no-repeat left center; 4 background-size: contain; 5 height: 50px; 6 width: 250px; 7} 8.navbar-brand-twitter { 9 background: url("../images/2021 Twitter logo - blue.png") no-repeat left center; 10 background-size: contain; 11 height: 50px; 12 width: 250px; 13} 14.navbar-brand-github { 15 background: url("../images/github.png") no-repeat left center; 16 background-size: contain; 17 height: 50px; 18 width: 250px; 19}
試したこと
div class="navbar-brand-gmail"
こちらにブロック要素を中心とするmx-auto
を入れました。これでも反映されず。
ul classこちらにもmx-auto
を入れましたが反映されず。
親子関係が間違っているのでしょうか?
補足情報(FW/ツールのバージョンなど)
bootstrap 4
laravel 6.20
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/17 00:18