不明白span標(biāo)簽里的 position: relative;是干嘛用的,但又不能少
?.topmenu li:hover span
? ? ? ? {
? ? ? ? ? ? background: white;
? ? ? ? ? ? display: inline-block;
? ? ? ? ? ? z-index: 20;
? ? ? ? ? ? width: 20px;
? ? ? ? ? ? height: 30px;
? ? ? ? ? ? float: right;
? ? ? ? ? ? position: relative;
? ? ? ? }
2017-01-12
當(dāng)你定義的CSS中有position屬性值為absolute、relative或fixed時(shí),用z-index此取值方可生效。
2016-09-29
position:relative是相對(duì)定位,是相對(duì)于前面的容器定位的。