我目前正在使用如下所示的标记。它确实以全高显示第一部分,无论分辨率如何(这是重点),但是当我滚动到下半部分时,会有很大的空白空间。我如何摆脱这种差距并无缝过渡(我使用锚样式导航到下半场)
.first-half {height:50vh; background: red;}
.second-half {height:50vh; background: green;}
<div class="first-half">
content
</div>
<div class="second-half">
content
</div>