こちらの作成中のサイトですが、
http://spiritualcompany.net/portfolio/site1/index.html
青い背景の部分にCSSで背景画像を設定しているのですが表示されません。
前は、表示されていたのですが、headerを作っていたら表示されなくなりました。
また中のdiv内のコンテンツが表示されません。
html
1 <header class="fixed-top bg-light"> 2 <div class="container-fluid header-containt"> 3 <div class="row"> 4 <div class="col-md-6"> 5 <a href="#"><i class="fas fa-campground fa-2x"></i></a> 6 </div> 7 <div class="col-md-6 nav-content"> 8 <nav class="navbar navbar-expand-lg navbar-light"> 9 <a href="#">Service</a> 10 <a href="#">Price</a> 11 <a href="#">Communication</a> 12 <a href="#">Contact</a> 13 14 </nav> 15 </div> 16 </div> 17 </div> 18 </header> 19 20 <div class="container-fluid first"> 21 <div class="row"> 22 <div class="col-md-6"> 23 <h2>テストです。</h2> 24 </div> 25 <div class="col-md-6"> 26 <h2>テストです。</h2> 27 </div> 28 29 </div> 30 31 </div><!--end of first--> 32
CSS
1 2body{ 3 margin: 0; 4 background-color: lightsteelblue; 5} 6 7header i{ 8 color: pink; 9 display: inline; 10} 11 12.header-containt{ 13 padding-top: 20px; 14 padding-bottom: 20px; 15} 16 17.nav{ 18 margin: 0 5px 0 0 ; 19} 20 21nav a{ 22 padding-right: 10px; 23 color: black; 24 text-decoration: none; 25} 26 27nav a:hover{ 28 text-decoration: underline; 29 color: black; 30} 31 32.first{ 33 background-image: url("../img/top-back.jpg"); 34}
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/17 10:12