我希望mapCell
的内容在用户向下滚动时粘贴到查看窗口的顶部(resultsTable
非常高)。
然而,这仅仅导致map
的最底部在页面的顶部可见,而download
保持绝对定位。
#map {
position: -webkit-sticky;
position: sticky;
top: 0;
}
#mapCell {
vertical-align: top;
min-width: 492.883px;
}
<table border="1" width="100%" class="bottomTable">
<tr>
<td id="resultsCell">
<table class="resultsTable" id="resultsTable"></table>
<td id="mapCell">
<object id="map" class="mapClass">
<!-- SVG image -->
</object>
<br>
<button id="download">Download Map</button>
</td>
</tr>
</table>
1条答案
按热度按时间qyswt5oh1#
为什么不在
#mapCell
上放置位置粘滞?