css 如何使用灵活的Angular 布局

jdzmm42g  于 2023-05-23  发布在  Angular
关注(0)|答案(2)|浏览(190)

我想创建这个页面的可能性滚动它,如果我们需要

在每一块上,我将添加一个特定的组件,现在我将创建这些块,每个块都有一个特定的颜色,只是为了制作布局。我没有得到与图片相同的rslt,这是我的html代码:

<div class="sidebar">
  HELLO
</div>

<div class="container-red">
  <div>
    i'm the big block
  </div>
  <div class="block-blue">
    HI
  </div>
  <div class="block-black">
    HI AGAIN
  </div>
</div>

这就是CSS:

.sidebar {
  width: 20%;
  /* Additional styling for the sidebar */
}

.container-red {
  width: 80%;
  /* Additional styling for the container */
}

.block-blue {
  width: 50%;
  /* Additional styling for the blue block */
}

.block-black {
  width: 50%;
  /* Additional styling for the black block */
}
slwdgvem

slwdgvem1#

希望这将是有用的,你可以添加css属性:

"overflow-y:scroll"

移动到要滚动的容器。
感谢和问候。

wvyml7n5

wvyml7n52#

使用"overflow-y:scroll"与特定于框的高度,也可以使用https://manos.malihu.gr/jquery-custom-content-scroller/

相关问题