# Component Styles
# 组件样式
Angular applications are styled with standard CSS. That means you can apply
everything you know about CSS stylesheets, selectors, rules, and media queries
directly to Angular applications.
Angular 应用使用标准的 CSS 来设置样式。这意味着我们可以把关于 CSS
的那些知识和技能直接用于我们的 Angular 程序中,例如:样式表、选择器、规则以及媒体查询等。
Additionally, Angular can bundle *component styles*
with components, enabling a more modular design than regular stylesheets.
另外,Angular 还能把*组件样式*捆绑在我们的组件上,以实现比标准样式表更加模块化的设计。
This page describes how to load and apply these component styles.
在本章中,我们将学到如何加载和使用这些*组件样式*。
You can run the in Stackblitz and download the code from there.
你可以在 Stackblitz 上运行本章这些代码的并下载这些代码。
## Using component styles
## 使用组件样式
For every Angular component you write, you may define not only an HTML template,
but also the CSS styles that go with that template,
specifying any selectors, rules, and media queries that you need.
对于我们写的每个 Angular 组件来说,除了定义 HTML 模板之外,我们还要定义用于模板的 CSS 样式、
指定任意的选择器、规则和媒体查询。
One way to do this is to set the `styles` property in the component metadata.
The `styles` property takes an array of strings that contain CSS code.
Usually you give it one string, as in the following example:
实现方式之一,是在组件的元数据中设置`styles`属性。
`styles`属性可以接受一个包含 CSS 代码的字符串数组。
通常我们只给它一个字符串就行了,如同下例:
## Style scope
## 范围化的样式
The styles specified in `@Component` metadata _apply only within the template of that component_.
在 `@Component` 的元数据中指定的样式只会对该组件的模板生效。
They are _not inherited_ by any components nested within the template nor by any content projected into the component.
它们既不会被模板中嵌入的组件继承,也不会被通过内容投影(如 ng-content)嵌进来的组件继承。
In this example, the `h1` style applies only to the `HeroAppComponent`,
not to the nested `HeroMainComponent` nor to `` tags anywhere else in the application.
在这个例子中,`h1` 的样式只对 `HeroAppComponent` 生效,既不会作用于内嵌的 `HeroMainComponent` ,也不会作用于应用中其它任何地方的 `` 标签。
This scoping restriction is a ***styling modularity feature***.
这种范围限制就是所谓的***样式模块化***特性
* You can use the CSS class names and selectors that make the most sense in the context of each component.
可以使用对每个组件最有意义的 CSS 类名和选择器。
* Class names and selectors are local to the component and don't collide with
classes and selectors used elsewhere in the application.
类名和选择器是仅属于组件内部的,它不会和应用中其它地方的类名和选择器出现冲突。
* Changes to styles elsewhere in the application don't affect the component's styles.
我们组件的样式*不会*因为别的地方修改了样式而被意外改变。
* You can co-locate the CSS code of each component with the TypeScript and HTML code of the component,
which leads to a neat and tidy project structure.
我们可以让每个组件的 CSS 代码和它的 TypeScript、HTML 代码放在一起,这将促成清爽整洁的项目结构。
* You can change or remove component CSS code without searching through the
whole application to find where else the code is used.
将来我们可以修改或移除组件的 CSS 代码,而不用遍历整个应用来看它有没有被别处用到,只要看看当前组件就可以了。
{@a special-selectors}
## Special selectors
## 特殊的选择器
Component styles have a few special *selectors* from the world of shadow DOM style scoping
(described in the [CSS Scoping Module Level 1](https://www.w3.org/TR/css-scoping-1) page on the
[W3C](https://www.w3.org) site).
The following sections describe these selectors.
组件样式中有一些从影子(Shadow) DOM 样式范围领域(记录在[W3C](https://www.w3.org)的[CSS Scoping Module Level 1](https://www.w3.org/TR/css-scoping-1)中) 引入的特殊*选择器*:
### :host
### :host 选择器
Use the `:host` pseudo-class selector to target styles in the element that *hosts* the component (as opposed to
targeting elements *inside* the component's template).
使用`:host`伪类选择器,用来选择组件*宿主*元素中的元素(相对于组件模板*内部*的元素)。
The `:host` selector is the only way to target the host element. You can't reach
the host element from inside the component with other selectors because it's not part of the
component's own template. The host element is in a parent component's template.
这是我们能以宿主元素为目标的*唯一*方式。除此之外,我们将没办法指定它,
因为宿主不是组件自身模板的一部分,而是父组件模板的一部分。
Use the *function form* to apply host styles conditionally by
including another selector inside parentheses after `:host`.
要把宿主样式作为条件,就要像*函数*一样把其它选择器放在`:host`后面的括号中。
The next example targets the host element again, but only when it also has the `active` CSS class.
在下一个例子中,我们又一次把宿主元素作为目标,但是只有当它同时带有`active` CSS 类的时候才会生效。
### :host-context
### :host-context 选择器
Sometimes it's useful to apply styles based on some condition *outside* of a component's view.
For example, a CSS theme class could be applied to the document `` element, and
you want to change how your component looks based on that.
有时候,基于某些来自组件视图*外部*的条件应用样式是很有用的。
例如,在文档的``元素上可能有一个用于表示样式主题 (theme) 的 CSS 类,而我们应当基于它来决定组件的样式。
Use the `:host-context()` pseudo-class selector, which works just like the function
form of `:host()`. The `:host-context()` selector looks for a CSS class in any ancestor of the component host element,
up to the document root. The `:host-context()` selector is useful when combined with another selector.
这时可以使用`:host-context()`伪类选择器。它也以类似`:host()`形式使用。它在当前组件宿主元素的*祖先节点*中查找 CSS 类,
直到文档的根节点为止。在与其它选择器组合使用时,它非常有用。
The following example applies a `background-color` style to all `` elements *inside* the component, only
if some ancestor element has the CSS class `theme-light`.
在下面的例子中,只有当某个祖先元素有 CSS 类`theme-light`时,我们才会把`background-color`样式应用到组件*内部*的所有``元素中。
### (deprecated) `/deep/`, `>>>`, and `::ng-deep`
### 已废弃 `/deep/`、`>>>`和`::ng-deep`
Component styles normally apply only to the HTML in the component's own template.
组件样式通常只会作用于组件自身的 HTML 上。
Use the `/deep/` shadow-piercing descendant combinator to force a style down through the child
component tree into all the child component views.
The `/deep/` combinator works to any depth of nested components, and it applies to both the view
children and content children of the component.
我们可以使用`/deep/`选择器,来强制一个样式对各级子组件的视图也生效,它*不但作用于组件的子视图,也会作用于组件的内容*。
The following example targets all `` elements, from the host element down
through this component to all of its child elements in the DOM.
在这个例子中,我们以所有的``元素为目标,从宿主元素到当前元素再到 DOM 中的所有子元素:
The `/deep/` combinator also has the aliases `>>>`, and `::ng-deep`.
`/deep/` 组合器还有两个别名:`>>>`和`::ng-deep`。
Use `/deep/`, `>>>` and `::ng-deep` only with *emulated* view encapsulation.
Emulated is the default and most commonly used view encapsulation. For more information, see the
[Controlling view encapsulation](guide/component-styles#view-encapsulation) section.
`/deep/`和`>>>`选择器只能被用在**仿真 (emulated) **模式下。
这种方式是默认值,也是用得最多的方式。
更多信息,见[控制视图封装模式](guide/component-styles#view-encapsulation)一节。
The shadow-piercing descendant combinator is deprecated and [support is being removed from major browsers](https://www.chromestatus.com/features/6750456638341120) and tools.
As such we plan to drop support in Angular (for all 3 of `/deep/`, `>>>` and `::ng-deep`).
Until then `::ng-deep` should be preferred for a broader compatibility with the tools.
CSS标准中用于 "刺穿Shadow DOM" 的组合器已经被废弃,并将[这个特性从主流浏览器和工具中移除](https://www.chromestatus.com/features/6750456638341120)。
因此,我们也将在 Angular 中移除对它们的支持(包括`/deep/`、`>>>` 和 `::ng-deep`)。
目前,建议先统一使用`::ng-deep`,以便兼容将来的工具。
{@a loading-styles}
## Loading component styles
## 把样式加载进组件中
There are several ways to add styles to a component:
有几种方式把样式加入组件:
* By setting `styles` or `styleUrls` metadata.
设置`styles`或`styleUrls`元数据
* Inline in the template HTML.
内联在模板的 HTML 中
* With CSS imports.
通过 CSS 文件导入
The scoping rules outlined earlier apply to each of these loading patterns.
上述作用域规则对所有这些加载模式都适用。
### Styles in component metadata
### 元数据中的样式
You can add a `styles` array property to the `@Component` decorator.
我们可以给`@Component`装饰器添加一个`styles`数组型属性。
Each string in the array defines some CSS for this component.
这个数组中的每一个字符串(通常也只有一个)定义一份 CSS。
Reminder: these styles apply _only to this component_.
They are _not inherited_ by any components nested within the template nor by any content projected into the component.
注意:这些样式**只对当前组件生效**。
它们**既不会作用于模板中嵌入的任何组件**,也不会作用于投影进来的组件(如 `ng-content` )。
The CLI defines an empty `styles` array when you create the component with the `--inline-styles` flag.
当使用 `--inline-styles` 标识创建组件时,CLI 就会定义一个空的 `styles` 数组
ng generate component hero-app --inline-style
### Style files in component metadata
### 组件元数据中的样式文件
You can load styles from external CSS files by adding a `styleUrls` property
to a component's `@Component` decorator:
我们可以通过把外部 CSS 文件添加到 `@Component` 的 `styleUrls` 属性中来加载外部样式。
Reminder: the styles in the style file apply _only to this component_.
They are _not inherited_ by any components nested within the template nor by any content projected into the component.
注意:这些样式**只对当前组件生效**。
它们**既不会作用于模板中嵌入的任何组件**,也不会作用于投影进来的组件(如 `ng-content` )。
You can specify more than one styles file or even a combination of `style` and `styleUrls`.
我们可以指定多个样式文件,甚至可以组合使用 `style` 和 `styleUrls` 方式。
The CLI creates an empty styles file for you by default and references that file in the component's generated `styleUrls`.
ng generate component hero-app
### Template inline styles
### 模板内联样式
You can embed CSS styles directly into the HTML template by putting them
inside `