Learn how to define CSS inline and externally within the component decorator metadata.
- [Instructor] Defining CSS in an Angular…template is very similar to how you define HTML.…Within the component decorator,…you can choose to write inline CSS.…You could use the styles URL property…to import an external style sheet,…and you can also write inline CSS…with the template property.…Additionally, you can also define…CSS within a global stylesheet.…Let's take a look at each of these methods of defining CSS.…The Angular command line interface generates…an app.component.css stylesheet and defines it…within the style URL's property as seen on line 12.…
If we take a look at this CSS file,…we'll notice that it's blank.…Let's write a rule set for this h1 tag.…We'll save it, and let's switch…over to our browser and we'll now…see that it has changed our title to red.…Simple enough.…Going back to this external stylesheet,…let's copy our rule set and revert…back to our app.component.ts file.…
To define inline CSS, we simply…change the style URL's property to styles,…and as with the HTML, let's also add backticks…and let's paste in the h1 rule set…
Author
Released
6/2/2017- How components work
- Defining HTML templates
- Defining CSS
- Interpolation
- NgFor
- NgSwitch
- Class binding and style binding
- Property binding and event binding
- Animation
- Creating routes for navigation
Skill Level Intermediate
Duration
Views
Related Courses
-
Angular Testing and Debugging
with Derek Peruo1h 16m Intermediate
-
Introduction
-
Welcome45s
-
-
1. Getting Up and Running with Angular
-
How components work2m 27s
-
Defining HTML templates2m 49s
-
Defining CSS3m 1s
-
2. Templating Basics
-
Interpolation2m 8s
-
NgFor3m 47s
-
NgIf, Else, and Then4m 12s
-
NgSwitch2m 59s
-
-
3. Data Binding
-
Local variables3m 32s
-
Class binding3m 56s
-
Style binding2m 41s
-
Property binding2m 12s
-
Event binding5m 25s
-
-
4. Animation
-
Transitions3m 43s
-
Multi-step animations3m 39s
-
5. Tying It All Together
-
Project preview53s
-
Starting the project2m 53s
-
Header template7m 40s
-
Products template10m 1s
-
Products component7m 17s
-
-
Conclusion
-
Next steps51s
-
- Mark as unwatched
- Mark all as unwatched
Are you sure you want to mark all the videos in this course as unwatched?
This will not affect your course history, your reports, or your certificates of completion for this course.
CancelTake notes with your new membership!
Type in the entry box, then click Enter to save your note.
1:30Press on any video thumbnail to jump immediately to the timecode shown.
Notes are saved with you account but can also be exported as plain text, MS Word, PDF, Google Doc, or Evernote.
Share this video
Embed this video
Video: Defining CSS