这个
ng-bootstrap
documentation
表示:
仅有的两个依赖项是Angular和bootstrap4css
您需要添加对bootstrap4.x.xcss的引用。这可以通过添加CDN来实现
<link>
给你的
index.html
. 以下CDN来自当前的Boostrap 4.x.x
documentation
:
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
或者,如果使用@angular/cli,可以添加
Global Styles
给你的
angular.json
styles
数组属性的相对路径
到
node_modules/bootstrap/dist/css/bootstrap.min.css
:
"styles": [
"node_modules/bootstrap/dist/css/bootstrap.min.css",
"src/styles.css",
],
node_modules
bootstrap.min.css
在
style.css
文件。
@import '../node_modules/bootstrap/dist/css/bootstrap.min.css';