在角度中使用主机选择器

时间:2019-04-30 04:14:46

标签: html css angular sass

我需要使用主机选择器将页面的背景色设置为其他颜色的帮助。我在stackblitz https://stackblitz.com/edit/angular-hknw2a?file=src%2Fapp%2Fapp.component.scss中尝试了该示例,不确定如何设置整个页面。 预先感谢。

1 个答案:

答案 0 :(得分:3)

在“主机”选择器中设置宽度最小高度,以设置整个页面的背景颜色。

body {
  margin:0px;
}

:host{
  background-color: aquamarine;
  display:block;// comment this tyo have "no background"
  width: 100vw;
  min-height:100px;
}