是否可以在特定组件中链接外部样式表?(非全局)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了是否可以在特定组件中链接外部样式表?(非全局)相关的知识,希望对你有一定的参考价值。
我想在角度为6的应用程序中使用2个组件
我希望第一个组件使用bootstrap min.css文件,而另一个不使用
我该如何实现
答案
您可以使用ViewEncapsulation。
@Component({
selector: 'app-login',
templateUrl: './login.component.html',
styleUrls: ['./login.component.css'],
encapsulation: ViewEncapsulation.ShadowDom
})
使用shadow dom确保您的基础项目样式不会被应用。
以上是关于是否可以在特定组件中链接外部样式表?(非全局)的主要内容,如果未能解决你的问题,请参考以下文章