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.
我有一个标题,下面我正在绘制 JQuery Tab navigator。我在选项卡的左侧有填充,我希望标题图像超过选项卡导航器区域。截至目前,它隐藏在面板后面。不应隐藏图像。CSS 中的哪个属性可以做到这一点?这是小提琴链接
我试过`
.logo { float:left; height:50px; padding-left: 1em; padding-right:1.5em; z-index: 5; }`
,但它不起作用。感谢您查看这个
z-index仅对定位元素有意义。因此,您需要添加position: relative;:
z-index
position: relative;
.logo { float:left; height:50px; padding-left: 1em; padding-right:1.5em; z-index: 5; position: relative; }
参考:http ://www.w3.org/wiki/CSS/Properties/z-index