angular에서 css를 불러오는 몇 가지 방법
We can load styles from external CSS files by adding a
styleUrls
attribute into a component's @Component
decorator: @Component({
selector: 'hero-details',
template: `
{{hero.name}}
`,
styleUrls: ['app/hero-details.component.css']
})
export class HeroDetailsComponent {
/* . . . */
}
2.Users of module bundlers like Webpack may also use the
styles
attribute to load styles from external files at build time. They could write: styles: [require('my.component.css')]
We set the
styles
property, not styleUrls
property! The module bundler is loading the CSS strings, not Angular. Angular only sees the CSS strings after the bundler loads them. To Angular it is as if we wrote the styles
array by hand. Refer to the module bundler's documentation for information on loading CSS in this manner. 3.Template Link Tags
We can also embed
tags into the component's HTML template. As with
styleUrls
, the link tag's href
URL is relative to the application root, not relative to the component file. @Component({
selector: 'hero-team',
template: `
Team
-
{{member}}
`
})
4.CSS @imports
We can also import CSS files into our CSS files by using the standard CSS
@import
rule. In this case the URL is relative to the CSS file into which we are importing.
src/app/hero-details.component.css (excerpt):
@import 'hero-details-box.css';
전재 대상:https://www.cnblogs.com/ihzeng/p/7051319.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.