Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
現在、SlidesJS を使用して、固定ヘッダー (スクロール中にページの上部に固定) を持つ Web ページにスライドショーを表示しています。問題は、ページの一番下までスクロールすると、スライドショーがヘッダーの上にとどまり、それを覆うことです。
スクロール中にヘッダーの下に移動したり、ヘッダーを常にすべての上に置いたりする方法はありますか (おそらく css を使用)。ありがとう!
css で z-index を使用して、ヘッダーを一番上に置くことができます。
#header { z-index: 10; } #imageSlider { z-index: 1; }