我正在建立一个网页,我也使用bootstrap-4。使用div将页面分为两列。我需要div的右边滚动,左边静止。我试过使用“溢出”,但它不工作,就像当我向下滚动的左侧div来与它。正如我所说,我使用了bootstrap,
我有一个包含类“container-fluid”的基本div,在它里面还有一个包含类“row”的div,我的两个div都在这个div里面。其内容如下:
<body>
<div class=container-fluid>
<div class=row>
<div class="col-md-3 pt-5 align-items-center back-color1 vh-100 overflow-hidden">
<img>
<p></p>
<h3></h3>
<div>
(for nav-btns..)
<p></p>
</div>
</div>
<div class="col-md-9 back-color2 overflow-auto">
<div class="vh-100">
<h1></h1>
<p></p>
<a></a>
<div> (space for img.) </div>
</div>
<div class="vh-100">
(this div for other contents on the page. This has to come down)
</div>
</div>
</div>
</div>
</body>
字符串
'overflow'无法在程式码上运作,不知道原因
1条答案
按热度按时间jtjikinw1#
您可以将左侧div的位置设置为固定。应该能给予你想要的效果。
将
position-fixed
添加到左侧div的类中。这个应该可以。