`前貼上執行該導覽列語法 ```markup ``` 7. 接著利用css來調整導覽列外觀 ```css /* 讓導覽列靠左 */ .stellarnav ul { text-align: left; } /* 設定選項的文字顏色*/ .stellarnav li a { color: #3c583d; } /* 選項滑過時顏色 */ .stellarnav a:hover { color: #BBCCA8; background: #3c583d; } /* 第二層選項的背景、框線及陰影設定 */ .stellarnav ul ul { background: #fdfdf9; border: 1px solid #A5BB8F; box-shadow: 1px 1px 4px rgb(48, 49, 48, 0.8); } /* 手機模式下,預設導覽列外觀 */ .stellarnav.mobile ul { background: rgba(165, 187, 143, 0.9); box-shadow: none; z-index: 10; } /* 手機模式下,第二層子選項外觀 */ .stellarnav.mobile ul ul { background: rgba(185, 207, 163, 0.9); } /* 手機模式下,第三層子選項外觀 */ .stellarnav.mobile ul ul ul { background: rgba(205, 227, 183, 0.9); } ``` 8. `z-index` 用來指定該元素的堆疊位置,值越大的,位置會越高(可遮住較低的元素) =