1 回答

TA貢獻(xiàn)1836條經(jīng)驗(yàn) 獲得超13個(gè)贊
有趣的請(qǐng)求哈哈,但我認(rèn)為這樣的事情可能會(huì)起作用。如果您<div>在<li>s.
<li>
<a href="#">Home</a>
<div class="extend"></div>
</li>
然后,給你的<li> position: relative;
并給出.extend以下內(nèi)容CSS
.extend {
position: absolute;
background-color: rgba(50, 205, 50, 0.5); //change as you wish
top: 0;
bottom: 0;
left: -100px; //change this to your preference
right: -100px; //change this to your preference
display: none;
z-index: 2;
}
然后,當(dāng)您將鼠標(biāo)懸停在您的 上時(shí)<li>,您的.extend更改為display: block
li:hover > .extend {
display: block;
}
- 1 回答
- 0 關(guān)注
- 128 瀏覽
添加回答
舉報(bào)