我正在使用Angular 7和ngx-admin模板,该模板使用了Bootstrap4。
但是我有一个需要使用bootstrap 3的组件(是的,我的确是这样做的)。如何覆盖Angular中特定组件的bootstrap / global样式?我尝试使用ViewEncapsulation
的不同选项,但这对我而言实际上并不起作用。
我以为我可能会忽略组件中的全局样式(以某种方式),而在组件html中引用bootstrap 3,但这没有用:
HTML文件:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"
integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<p>This is the component I want to use bootstrap 3 in</p>>