CSS 로 Component 스타일링 2/2
Child Component 지원 식 구성 요소에 변경 내용을 적용하려면 부모 구성 요소의 .razor.css 파일에 있는 모든 하위 항목 요소에 ::deep 조합기를 사용한다. ::deep h1 { color: red; font-family: Tahoma, Geneva, Verdana, sans-serif; } parent @page "/css/isolation-parent" Parent Shared/CssIsolationChild Child Component Shared/Global CSS 정의된 CSS 규칙을 모든 구성 요소에서 재사용할 수 있는 기술 /wwwroot/css/site.css 을 _Layout.cshtml 에서 기본적으로 사용한다. site.css 파일을 열고 아래 css 규칙을 정의..
2022.04.15