为什么我的启动屏幕无法全屏显示?

时间:2018-12-25 14:58:00

标签: html css angular

我有一个带有初始屏幕的Angular 6应用程序,我希望初始屏幕达到全高,但我不知道出了什么问题。这是今天的图像:

https://imgur.com/TqX30Ef

    body,
    html {
      height: 100%;
    }

    .m-splash-screen {
      background-color: #3c1977;
      position: absolute;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      width: 100%;
      z-index: 99999;
    }
  </style>

这是我必须要做的CSS?

1 个答案:

答案 0 :(得分:0)

使用固定位置,绝对值将最初占据100%的高度,但滚动时将不会覆盖整个屏幕。