<div id="screenLeft" class="screen"></div>
<div id="screenTop" class="screen"></div>
<div id="container">
<div id="content">
Test Possition of Text and whatnot1<br />
Test Possition of Text and whatnot2<br />
Test Possition of Text and whatnot3<br />
Test Possition of Text and whatnot4<br />
</div>
</div>
2条答案
按热度按时间ki0zmccv1#
对于您的第一个问题,将这2个属性
top:0px;
(从屏幕的0开始)和z-index:99;
(堆叠在顶栏上)添加到侧栏id#screenLeft
对于您的第二个问题后,删除侧边栏和顶栏添加此css
#content { margin-left: 0; margin-top: 0; }
,它将删除边距形式的内容div。iaqfqrcu2#
第一个问题:
当标题和侧边栏的位置都固定时,如何在标题顶部显示侧边栏?
答案很简单,您可以使用
z-index = number
(例如,z索引= 100),参考:MDN
z-index CSS属性设置定位元素及其后代的顺序。具有较大z-index的重叠元素覆盖具有较小z-index的重叠元素。
示例代码:
第二个问题:
如果边栏和标题没有显示,我如何在整个屏幕上显示内容div?
您将需要使用一些javascript来执行此操作,
将以下代码添加到
<body>
标记的末尾,然后根据您的需要进行修改。
ToggleContent()
时,请记住调用该函数