Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图像显示在弹出的窗口上,它不应该那样做。图像应位于弹出窗口下方。
我想我需要在css中做点什么?
这是图像的css:
.ribbon{ background:url(../images/ribbon.png) no-repeat; position:absolute; width:152px; height:132px; z-index:999999999; margin:-4px 0 0 -4px; }
只需删除或更改那个非常巨大的z-index,它可能比弹出窗口的更大z-index!
z-index
您应该设置 CSS "z-index:9999999;" 将图像上的属性设置为低于弹出窗口的 z-index 的值。
看看是否将其更改为 z-index:1; 也许修复它。
也没有窗口 css,尽管我不知道使图像出现在弹出窗口后面的数字是多少。
我认为你的 z-index 太高了。尝试将其设置为低于此值。