📜  如何使幻灯片不越过导航栏 - CSS 代码示例

📅  最后修改于: 2022-03-11 14:47:41.177000             🧑  作者: Mango

代码示例1
/* Add the 'z-index' makes sure the nav bar goes infront of everything,
   if some things still go over then up the number until it works.*/
nav{
    z-index: 10; /* Don't hesitate to change '10' to a higher number. */
}