100%宽度弹性盒内的额外余量

时间:2018-08-01 12:04:23

标签: css flexbox material-design appbar

我想按照材料设计制作一个应用栏。

enter image description here

我编写的代码尝试使用宽度为100%的flexbox进行绘制。

.appbar {
  display: flex;
  flex-direction: row;
  align-items: center;

  width: 100%;
  height: 48px;

  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.46);
}

但是我在应用栏中获得了额外的利润。为什么会这样?

enter image description here

1 个答案:

答案 0 :(得分:1)

添加margin: 0;     padding: 0;body

 body{
  margin: 0;
padding: 0;
 }
 .appbar {
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: red;

  width: 100%;
  height: 48px;

  box-sizing: border-box;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.46);
}
<div class="appbar"></div>