Advanced
Scoped CSS
A component's <style> is automatically scoped — selectors only affect that component's elements. Just write normal CSS:
Component.html
<style> .title { color: #4f46e5; } /* won't leak to other components */ </style> <h1 class="title">Hello</h1>