粘贴是否有办法将页面上的其他粘贴考虑在内?
例如:
body {
display: flex;
min-height: 2000px;
flex-direction: column;
}
#header {
height: 40px;
flex: 0 0 auto;
position: sticky;
top: 0;
background: yellow;
}
#footer {
flex: 0 0 auto;
height: 20px;
}
#main {
display: flex;
flex: auto;
background: blue;
}
#side {
width: 200px;
background: red;
}
#side > div {
position: sticky;
top: 0px;
}
<div id="header">header</div>
<div id="main">
<div id="side">
<div>side</div>
</div>
<div id="content">
content
</div>
</div>
<div id="footer">footer</div>
注意,如果我向下滚动,标题将与侧边栏重叠,因为它们具有相同的top
位置。
要修复,我必须使侧边栏的顶部位置采用标题高度的值
body {
display: flex;
min-height: 2000px;
flex-direction: column;
}
#header {
height: 40px;
flex: 0 0 auto;
position: sticky;
top: 0;
background: yellow;
}
#footer {
flex: 0 0 auto;
height: 20px;
}
#main {
display: flex;
flex: auto;
background: blue;
}
#side {
width: 200px;
background: red;
}
#side > div {
position: sticky;
top: 40px;
}
<div id="header">header</div>
<div id="main">
<div id="side">
<div>side</div>
</div>
<div id="content">
content
</div>
</div>
<div id="footer">footer</div>
但是如果收割台的高度可变怎么办?我能告诉浏览器以某种方式定位贴纸,这样它们就不会与其他贴纸重叠吗?
我认为您需要为此使用javascript。首先获取标题的高度,然后使用该值设置侧面div的顶部位置。恐怕我不知道有什么纯css的方法可以做到这一点。
如果你使用的是jQuery,它只是使用.height()方法。如果不是,你可以使用这个:
var clientHeight = document.getElementById('myDiv').clientHeight;
var offsetHeight = document.getElementById('myDiv').offsetHeight;
offset方法获取带有任何填充和边框的高度。