大家好,所以我搜索了很多,但我找不到任何适合我的答案。这是我的问题:
我现在指定我正在使用Bootstrap。我有 2 列像这样工作:
---------------------
| Content | Aside1 |
| |------- |
| | Aside2 |
---------------------
这个想法是将内容放置在与包含溢出的 Aside1 和 Aside2 相同的高度:滚动到内容。
HTML:
<div class="container-full">
<article class="col-md-8 col-xs-12">
<p>Long content there</p>
</article>
<div class="aside_full_screen">
<aside class="col-md-4 col-xs-12">
<p>Social Network Content</p>
</aside>
<div class="col-md-4 col-xs-12">
<p>Kitten Content</p>
</div>
</div>
</div>
CSS:
article{
border: 2px solid black;
background-color: rgba(240, 116, 90, 1);
overflow: auto;
height: 1200px; /* — Just there for example, had to be remove — */
}
::-webkit-scrollbar { /* — For hiding scrollbar — */
display: none;
}
这是我主要得到的。这就是我想要实现的目标。稍微精确一点,滚动条被隐藏了。我对 JavaScript jQuery 或任何类型的提议持开放态度。