2017-02-22 13:09:39 -05:00
|
|
|
@title
|
|
|
|
Component Styles
|
|
|
|
|
|
|
|
@intro
|
|
|
|
Learn how to apply CSS styles to components.
|
|
|
|
|
|
|
|
@description
|
2017-03-27 11:08:53 -04:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
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.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
Additionally, Angular can bundle *component styles*
|
|
|
|
with components, enabling a more modular design than regular stylesheets.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
This page describes how to load and apply these component styles.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
## Table Of Contents
|
|
|
|
|
2017-03-11 10:36:40 -05:00
|
|
|
* [Using component styles](guide/component-styles#using-component-styles)
|
|
|
|
* [Special selectors](guide/component-styles#special-selectors)
|
|
|
|
* [Loading styles into components](guide/component-styles#loading-styles)
|
|
|
|
* [Controlling view encapsulation: native, emulated, and none](guide/component-styles#view-encapsulation)
|
|
|
|
* [Appendix 1: Inspecting the CSS generated in emulated view encapsulation](guide/component-styles#inspect-generated-css)
|
|
|
|
* [Appendix 2: Loading styles with relative URLs](guide/component-styles#relative-urls)
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
You can run the <live-example></live-example> in Plunker and download the code from there.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
## Using component styles
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
For every Angular component you write, you may define not only an HTML template,
|
2017-02-22 13:09:39 -05:00
|
|
|
but also the CSS styles that go with that template,
|
2017-03-06 05:43:33 -05:00
|
|
|
specifying any selectors, rules, and media queries that you need.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
One way to do this is to set the `styles` property in the component metadata.
|
2017-03-31 07:23:16 -04:00
|
|
|
The `styles` property takes an array of strings that contain CSS code.
|
2017-03-06 05:43:33 -05:00
|
|
|
Usually you give it one string, as in the following example:
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-app.component.ts" title="src/app/hero-app.component.ts" linenums="false">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The selectors you put into a component's styles apply only within the template
|
|
|
|
of that component. The `h1` selector in the preceding example applies only to the `<h1>` tag
|
2017-02-22 13:09:39 -05:00
|
|
|
in the template of `HeroAppComponent`. Any `<h1>` elements elsewhere in
|
|
|
|
the application are unaffected.
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
This is a big improvement in modularity compared to how CSS traditionally works.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
* You can use the CSS class names and selectors that make the most sense in the context of each component.
|
|
|
|
* 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.
|
|
|
|
* You can change or remove component CSS code without searching through the
|
|
|
|
whole application to find where else the code is used.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
|
|
|
{@a special-selectors}
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
## Special selectors
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
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.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
### :host
|
|
|
|
|
|
|
|
Use the `:host` pseudo-class selector to target styles in the element that *hosts* the component (as opposed to
|
2017-03-06 05:43:33 -05:00
|
|
|
targeting elements *inside* the component's template).
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-details.component.css" region="host" title="src/app/hero-details.component.css" linenums="false">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
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.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
Use the *function form* to apply host styles conditionally by
|
|
|
|
including another selector inside parentheses after `:host`.
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The next example targets the host element again, but only when it also has the `active` CSS class.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-details.component.css" region="hostfunction" title="src/app/hero-details.component.css" linenums="false">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
### :host-context
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
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 `<body>` element, and
|
|
|
|
you want to change how your component looks based on that.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
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.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The following example applies a `background-color` style to all `<h2>` elements *inside* the component, only
|
2017-02-22 13:09:39 -05:00
|
|
|
if some ancestor element has the CSS class `theme-light`.
|
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-details.component.css" region="hostcontext" title="src/app/hero-details.component.css" linenums="false">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
### /deep/
|
|
|
|
|
|
|
|
Component styles normally apply only to the HTML in the component's own template.
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
Use the `/deep/` selector to force a style down through the child component tree into all the child component views.
|
|
|
|
The `/deep/` selector works to any depth of nested components, and it applies to both the view
|
|
|
|
children and content children of the component.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The following example targets all `<h3>` elements, from the host element down
|
|
|
|
through this component to all of its child elements in the DOM.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-details.component.css" region="deep" title="src/app/hero-details.component.css" linenums="false">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The `/deep/` selector also has the alias `>>>`. You can use either interchangeably.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-04-10 11:51:13 -04:00
|
|
|
<div class="alert is-important">
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
Use the `/deep/` and `>>>` selectors only with *emulated* view encapsulation.
|
|
|
|
Emulated is the default and most commonly used view encapsulation. For more information, see the
|
2017-03-11 10:36:40 -05:00
|
|
|
[Controlling view encapsulation](guide/component-styles#view-encapsulation) section.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-04-10 11:51:13 -04:00
|
|
|
</div>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{@a loading-styles}
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
## Loading styles into components
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
There are several ways to add styles to a component:
|
2017-03-31 19:57:13 -04:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
* By setting `styles` or `styleUrls` metadata.
|
|
|
|
* Inline in the template HTML.
|
|
|
|
* With CSS imports.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The scoping rules outlined earlier apply to each of these loading patterns.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
### Styles in metadata
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 07:23:16 -04:00
|
|
|
You can add a `styles` array property to the `@Component` decorator.
|
|
|
|
Each string in the array (usually just one string) defines the CSS.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-30 15:04:18 -04:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-app.component.ts" title="src/app/hero-app.component.ts">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
### Style URLs in metadata
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
You can load styles from external CSS files by adding a `styleUrls` attribute
|
2017-03-31 07:23:16 -04:00
|
|
|
into a component's `@Component` decorator:
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-30 15:04:18 -04:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-details.component.ts" region="styleurls" title="src/app/hero-details.component.ts">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-10 11:51:13 -04:00
|
|
|
<div class="alert is-important">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-27 11:08:53 -04:00
|
|
|
The URL is relative to the *application root*, which is usually the
|
|
|
|
location of the `index.html` web page that hosts the application.
|
|
|
|
The style file URL is *not* relative to the component file.
|
|
|
|
That's why the example URL begins `src/app/`.
|
|
|
|
To specify a URL relative to the component file, see [Appendix 2](guide/component-styles#relative-urls).
|
|
|
|
|
|
|
|
|
2017-04-10 11:51:13 -04:00
|
|
|
</div>
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
|
|
|
|
|
2017-04-10 11:51:13 -04:00
|
|
|
<div class="l-sub-section">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-27 11:08:53 -04:00
|
|
|
If you use module bundlers like Webpack, you can also use the `styles` attribute
|
|
|
|
to load styles from external files at build time. You could write:
|
|
|
|
|
|
|
|
`styles: [require('my.component.css')]`
|
|
|
|
|
|
|
|
Set the `styles` property, not the `styleUrls` property. The module
|
|
|
|
bundler loads the CSS strings, not Angular.
|
|
|
|
Angular sees the CSS strings only after the bundler loads them.
|
|
|
|
To Angular, it's as if you wrote the `styles` array by hand.
|
|
|
|
For information on loading CSS in this manner, refer to the module bundler's documentation.
|
|
|
|
|
|
|
|
|
2017-04-10 11:51:13 -04:00
|
|
|
</div>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
### Template inline styles
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
You can embed styles directly into the HTML template by putting them
|
|
|
|
inside `<style>` tags.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-controls.component.ts" region="inlinestyles" title="src/app/hero-controls.component.ts">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
### Template link tags
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
You can also embed `<link>` tags into the component's HTML template.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
As with `styleUrls`, the link tag's `href` URL is relative to the
|
2017-03-06 05:43:33 -05:00
|
|
|
application root, not the component file.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-team.component.ts" region="stylelink" title="src/app/hero-team.component.ts">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
### CSS @imports
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
You can also import CSS files into the CSS files using the standard CSS `@import` rule.
|
|
|
|
For details, see [`@import`](https://developer.mozilla.org/en/docs/Web/CSS/@import)
|
|
|
|
on the [MDN](https://developer.mozilla.org) site.
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-27 11:08:53 -04:00
|
|
|
In this case, the URL is relative to the CSS file into which you're importing.
|
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/hero-details.component.css" region="import" title="src/app/hero-details.component.css (excerpt)">
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-27 11:08:53 -04:00
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{@a view-encapsulation}
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
## Controlling view encapsulation: native, emulated, and none
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
As discussed earlier, component CSS styles are encapsulated into the component's view and don't
|
|
|
|
affect the rest of the application.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
To control how this encapsulation happens on a *per
|
|
|
|
component* basis, you can set the *view encapsulation mode* in the component metadata.
|
|
|
|
Choose from the following modes:
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
* `Native` view encapsulation uses the browser's native shadow DOM implementation (see
|
|
|
|
[Shadow DOM](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Shadow_DOM)
|
|
|
|
on the [MDN](https://developer.mozilla.org) site)
|
|
|
|
to attach a shadow DOM to the component's host element, and then puts the component
|
|
|
|
view inside that shadow DOM. The component's styles are included within the shadow DOM.
|
2017-03-31 19:57:13 -04:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
* `Emulated` view encapsulation (the default) emulates the behavior of shadow DOM by preprocessing
|
2017-02-22 13:09:39 -05:00
|
|
|
(and renaming) the CSS code to effectively scope the CSS to the component's view.
|
2017-03-11 10:36:40 -05:00
|
|
|
For details, see [Appendix 1](guide/component-styles#inspect-generated-css).
|
2017-03-31 19:57:13 -04:00
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
* `None` means that Angular does no view encapsulation.
|
|
|
|
Angular adds the CSS to the global styles.
|
2017-03-06 05:43:33 -05:00
|
|
|
The scoping rules, isolations, and protections discussed earlier don't apply.
|
2017-02-22 13:09:39 -05:00
|
|
|
This is essentially the same as pasting the component's styles into the HTML.
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
To set the components encapsulation mode, use the `encapsulation` property in the component metadata:
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/quest-summary.component.ts" region="encapsulation.native" title="src/app/quest-summary.component.ts" linenums="false">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
`Native` view encapsulation only works on browsers that have native support
|
|
|
|
for shadow DOM (see [Shadow DOM v0](http://caniuse.com/#feat=shadowdom) on the
|
|
|
|
[Can I use](http://caniuse.com) site). The support is still limited,
|
2017-02-22 13:09:39 -05:00
|
|
|
which is why `Emulated` view encapsulation is the default mode and recommended
|
|
|
|
in most cases.
|
|
|
|
|
|
|
|
|
|
|
|
{@a inspect-generated-css}
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
## Appendix 1: Inspecting the CSS generated in emulated view encapsulation
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
When using emulated view encapsulation, Angular preprocesses
|
|
|
|
all component styles so that they approximate the standard shadow CSS scoping rules.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
In the DOM of a running Angular application with emulated view
|
|
|
|
encapsulation enabled, each DOM element has some extra attributes
|
2017-02-22 13:09:39 -05:00
|
|
|
attached to it:
|
|
|
|
|
2017-03-30 15:04:18 -04:00
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
<code-example format="">
|
2017-03-31 19:57:13 -04:00
|
|
|
<hero-details _nghost-pmm-5>
|
|
|
|
<h2 _ngcontent-pmm-5>Mister Fantastic</h2>
|
|
|
|
<hero-team _ngcontent-pmm-5 _nghost-pmm-6>
|
|
|
|
<h3 _ngcontent-pmm-6>Team</h3>
|
|
|
|
</hero-team>
|
|
|
|
</hero-detail>
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
</code-example>
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
There are two kinds of generated attributes:
|
2017-03-31 19:57:13 -04:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
* An element that would be a shadow DOM host in native encapsulation has a
|
2017-02-22 13:09:39 -05:00
|
|
|
generated `_nghost` attribute. This is typically the case for component host elements.
|
|
|
|
* An element within a component's view has a `_ngcontent` attribute
|
2017-03-06 05:43:33 -05:00
|
|
|
that identifies to which host's emulated shadow DOM this element belongs.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
The exact values of these attributes aren't important. They are automatically
|
|
|
|
generated and you never refer to them in application code. But they are targeted
|
|
|
|
by the generated component styles, which are in the `<head>` section of the DOM:
|
2017-02-22 13:09:39 -05:00
|
|
|
|
2017-03-30 15:04:18 -04:00
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
<code-example format="">
|
2017-03-31 19:57:13 -04:00
|
|
|
[_nghost-pmm-5] {
|
|
|
|
display: block;
|
|
|
|
border: 1px solid black;
|
|
|
|
}
|
|
|
|
|
|
|
|
h3[_ngcontent-pmm-6] {
|
|
|
|
background-color: white;
|
|
|
|
border: 1px solid #777;
|
|
|
|
}
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
</code-example>
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
These styles are post-processed so that each selector is augmented
|
2017-02-22 13:09:39 -05:00
|
|
|
with `_nghost` or `_ngcontent` attribute selectors.
|
2017-03-06 05:43:33 -05:00
|
|
|
These extra selectors enable the scoping rules described in this page.
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
|
|
|
|
{@a relative-urls}
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
## Appendix 2: Loading styles with relative URLs
|
2017-02-22 13:09:39 -05:00
|
|
|
|
|
|
|
It's common practice to split a component's code, HTML, and CSS into three separate files in the same directory:
|
2017-03-30 15:04:18 -04:00
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
<code-example format="nocode">
|
2017-03-31 19:57:13 -04:00
|
|
|
quest-summary.component.ts
|
|
|
|
quest-summary.component.html
|
|
|
|
quest-summary.component.css
|
|
|
|
|
2017-02-22 13:09:39 -05:00
|
|
|
</code-example>
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-06 05:43:33 -05:00
|
|
|
You include the template and CSS files by setting the `templateUrl` and `styleUrls` metadata properties respectively.
|
2017-02-22 13:09:39 -05:00
|
|
|
Because these files are co-located with the component,
|
|
|
|
it would be nice to refer to them by name without also having to specify a path back to the root of the application.
|
2017-03-31 19:57:13 -04:00
|
|
|
|
|
|
|
|
2017-03-27 11:08:53 -04:00
|
|
|
You can use a relative URL by prefixing your filenames with `./`:
|
|
|
|
|
|
|
|
|
2017-03-31 19:57:13 -04:00
|
|
|
<code-example path="component-styles/src/app/quest-summary.component.ts" title="src/app/quest-summary.component.ts">
|
2017-03-27 11:08:53 -04:00
|
|
|
|
|
|
|
</code-example>
|
|
|
|
|