您好我正在使用Angular 5,我正在尝试在我的代码中导入bootstrap但无法这样做。我使用:
安装了bootstrapnpm install --save bootstrap
我还将css文件添加到.angular-cli.json中:
"styles": ["../node_modules/bootstrap/dist/css/bootstrap.min.css",
"../node_modules/bootstrap/dist/css/bootstrap.css",
"styles.css"
],
但是当我在谷歌浏览器中检查我的代码时,我得到的就是这个,
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>MyFirstApp</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
</head>
<body>
<app-root></app-root>
<script type="text/javascript" src="inline.bundle.js"></script><script type="text/javascript" src="polyfills.bundle.js"></script><script type="text/javascript" src="styles.bundle.js"></script><script type="text/javascript" src="vendor.bundle.js"></script><script type="text/javascript" src="main.bundle.js"></script>
</body>
</html>
标题部分中没有用于引导程序的样式。请帮我。我被困了
答案 0 :(得分:2)
将样式bootstrap.min.css
添加到style.css
主:
@import "../src/css/bootstrap.min.css";
答案 1 :(得分:1)
尝试一下,将样式bootstrap.min.css
添加到style.css
@import "../node_modules/bootstrap/dist/css/bootstrap.min.css";
答案 2 :(得分:0)
&#34; ./../ node_modules /引导/ DIST / CSS / bootstrap.css&#34 ;, ./../ node_modules /引导/ DIST / CSS / bootstrap.min.css&#34;,
像这样使用