滚动条Scrollbar

为内容主体空间添加data-scrollbar属性,并对其限制高度height或max-height

滚动条 Scrollbar - 图1

  1. <div style="max-height:150px" data-scrollbar>
  2. <p>Content</p>
  3. </div>

可以为任意组件的主体空间来添加滚动条

滚动条 Scrollbar - 图2

  1. <div class="panel">
  2. <div class="title">Panel Default</div>
  3. <div class="content" style="max-height:150px" data-scrollbar>Content</div>
  4. </div>

反色Inverse

添加data-scrollbar="inverse"属性转换为反色效果

滚动条 Scrollbar - 图3

  1. <div style="background-color:#333;color:#ccc;">
  2. <div style="max-height:150px;padding:1rem;" data-scrollbar="inverse">
  3. <p>Content<p>
  4. </div>
  5. </div>