前提・実現したいこと
Responsive Bootstrap Website Start To Finish with Bootstrap 4, HTML5 & CSS3
fixed backgroundの部分が反映されず困っています。
試したこと
HTMLは動画のままで、
動画の中にbackground-imageの記述が見当たらなかったので、CSSの方は自分で入力したものです。
HTML
1<!--- Fixed background --> 2 <figure> 3 4 <div class="fixed-wrap"> 5 <div id="fixed"> 6 7 </div> 8 </div> 9 </figure>
CSS
1.fixed-wrap{ 2 height: 500px; 3 width: 100%; 4 z-index: -1; 5 background-attachment: fixed; 6} 7.fixed{ 8 background-image: url(./img/mac.png); 9}
初心者で聞く人もおらず行き詰まっています。
よろしくお願いします。
回答3件
あなたの回答
tips
プレビュー