我正在用 CSS 和 HTML 制作一个网站(ofc 有 JS、jQuery 和 XML,但让我们直言不讳)我想制作一个正在使用的按钮<ul>
并使<li>
网页变暗,我找到了这个,代码:
#dimmer
{
background:#000;
opacity:0.5;
position:fixed; /*enter code here important to use fixed, not absolute */
top:0;
left:0;
width:100%;
height:100%;
display:none;
z-index:9999; /* may not be necessary */
}
你们中的任何人都知道如何使 CSS 菜单按钮使用其div
内部吗?