如何从主要Angular组件设置html和body的样式?

时间:2018-12-13 16:38:18

标签: javascript angular

我正在尝试从主要组件设置html和body的样式:

app.component.styl:

 html, body {
       padding: 0;
       margin: 0;
       background: blue;
    }

似乎不适用于我的角度分量:

app.component.ts:

import { Component } from '@angular/core';

    @Component({
      selector: 'app-root',
      templateUrl: './app.component.html',
      styleUrls: ['./app.component.styl']
    })
    export class AppComponent {

    }

app.component.html:

<div class="todo-app">
  <div>
    <input type="text">
    <button>Add</button>
  </div>
</div>

为什么html和body选择器不起作用,是否有一种特殊的角度方法来实现?

3 个答案:

答案 0 :(得分:1)

app.component位于index.html的body标签的内部 ;像这样

index.html

<!doctype html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <title>Angular Alerts</title>
  <base href="/">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="icon" type="image/x-icon" href="assets/img/favicon/favicon.ico">
  <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
  <app-root></app-root> <!-- This is your App Component -->
</body>
</html>

鉴于此,您无法使用默认行为(即是否启用了ViewEncapsulation)来定位bodyhtml,因为样式仅作用于该组件,而组件本身没有没有body标签;您需要在styles.css全局文件中定义样式,或者关闭该组件的ViewEncapsulation,以便其css文件中定义的样式全局应用

答案 1 :(得分:1)

如果需要将样式应用于所有项目,则需要停用css中的封装,

@Component({
   ...
   encapsulation: ViewEncapsulation.None
   ...
})

Here一篇不错的文章。 但是我建议您在项目的根目录中在style.css或style.scss中设置样式。

答案 2 :(得分:1)

如果您在项目中启用了 Stylus 预处理器,则可以通过两种方式用AFAIN将Styles应用于根文件。

1-通过常规styles.styl文件

2-通过index.html文件本身