CSS - 包括边距中的滚动条大小

时间:2014-03-14 10:22:11

标签: html css

我正在为电子邮件收件箱构建布局。给定的设计包括一个标题和一个收件箱包装,右侧有一个滚动条。内部的收件箱应具有与标头相同的宽度。由于浏览器滚动条可能与宽度不同,因此收件箱边距右侧可能与标题边距右侧不同,后者没有滚动条。没有JS可以改进标题和收件箱吗?

js fiddle

HTML

<div class="header"> HEADER</div>

  <div class="inbox_wrap">

    <div class="inbox">
       Item<br />
       Item<br />...
   </div>
</div>

CSS

.header{
  height: 50px;
  background: grey;
  margin-top: 20px;
  margin-right: 40px;
  margin-left: 40px;
  color: white;
}

.inbox_wrap{
  background:  rgba(111,111,111,0.2);
  left: 40px;
  right: 0;
  top: 80px;
  bottom: 0;
  position: absolute;
  overflow-y: scroll;
}

.inbox{
     background: rgb(100,200,240);
     margin-right: 25px;
}

2 个答案:

答案 0 :(得分:0)

您可以使用收件箱包装滚动来“包含”滚动条的宽度。这是一个例子:

http://jsfiddle.net/e88Rj/4/

html, body
{
    height:100%;
    overflow: hidden;
}

body{
    margin: 0;
    padding: 0;
}

.header{
    height: 50px;
    background: grey;
    margin-top: 20px;
    margin-right: 40px;
    margin-left: 40px;
    color: white;
}

.inbox_wrap{
    background:  rgba(111,111,111,0.2);
    left: 40px;
    right: 40px;
    top: 80px;
    bottom:0;
    bottom: 0;
    position: absolute;
    overflow-y: auto;
}

.inbox{
    background: rgb(100,200,240);
}

答案 1 :(得分:0)

我很遗憾了解您的问题,但如果您想对齐标题和收件箱,请访问link,我已将两个div对齐。

<div class="header"> HEADER</div>

  <div class="inbox_wrap">

    <div class="inbox">
       Item<br />
       Item<br />...
   </div>
</div>