背景不适合屏幕

时间:2020-07-30 22:48:24

标签: html angular

我的角度应用程序中有背景问题。 我只想拥有与屏幕大小相同颜色的背景。 我知道这很容易,但是有了这段代码,它就不能像我想要的那样工作:

<!DOCTYPE html>
<html>

<head>
  <style>
    body {
      background-color: red;
      background-repeat: no-repeat;
      background-attachment: fixed;
      background-size: 100% 100%;
    }
  </style>
</head>

<body>

  <h2>Background Stretch</h2>

  <p>Set the background-size property to "100% 100%" and the background image will be stretched to cover the entire element, in this case the body element.</p>

</body>

</html>

我不明白的是,当我将这段代码放到app.component.html中时,它不起作用(背景停在like you see here段的末尾),但是当我将其放到单独的HTML文件效果很好(背景适合)。

感谢您的时间

0 个答案:

没有答案