文字被裁剪掉了

时间:2018-01-06 10:59:25

标签: css

我想知道为什么文本会在网站底部被截断?我不知道我在哪里弄错了,但我认为它在.wrapperTeam或以下的地方; D

Image of cropped text

该部分的CSS:

#team {
  max-height: 920px;
  height: 100vp;
  background-color: #e7f1f8;
  text-align: center;
  h1 {
    font-size: 40px;
    color: #3c4761;
    font-weight: 800;
    text-transform: uppercase;
    margin-top: 80px;
    padding-bottom: 20px;
  }
  .line {
    margin-bottom: 25px;
  }
  p {
    font-size: 18px;
    color: #3c4761;
  }
  .wrapperTeam {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    margin-top: 80px;
    h4 {
      font-size: 24px;
      text-transform: uppercase;
      margin-top: 40px;
    }
    .work {
      color: #30bae7;
      margin-top: 0;
    }
    p {
      font-size: 16px;
      font-weight: 300;
      width: 190px;
      margin: 30px auto 0 auto;

    }
    .social {
      display: inline-block;
    }
  }
}

1 个答案:

答案 0 :(得分:0)

好的,所以我删除了身高:100vh;来自我的.container课程,现在可以使用了!

感谢各位有兴趣的人,祝你有愉快的一天!