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.
我想在除此示例的顶部之外的任何地方使用 box-shadow:
http://jsfiddle.net/KquxS/2/
我很确定它可以用 z 值来完成,但我不确定如何,正如你所看到的,我尝试了一些游戏但没有运气。
如果使用position: absolute,则还必须提供位置(top、left等)。否则无效,元素将按照它们在 DOM 中出现的顺序绘制position。z-index
position: absolute
top
left
position
z-index
见http://www.w3.org/wiki/CSS/Properties/z-index
我不建议使用 z-index。
考虑使用以下样式:
ul:not(:first-child) { box-shadow:0 0 40px black; }
我要离开这个,但我认为你刚刚发布的评论有助于澄清你在寻找什么。