这是我第一次尝试bootstrap。除了班级jumbotron不起作用外,一切似乎都已到位。类容器工作并在中心带来内容但是假设提供一些背景的jumbotron似乎不起作用。 (添加或删除像class =" jumbotron"对页面没有影响。)
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Bootstrap 101 Template</title>
<link href="./css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="jumbotron">
<h1>My first Bootstrap website!</h1>
<p>This page will grow as we add more and more components from Bootstrap...</p>
</div>
<p>This is another paragraph.</p>
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</div>
<script src="http://code.jquery.com/jquery.js"></script>
<script src="./js/bootstrap.min.js"></script>
</body>
</html>
我附加了ide的,以便您可以看到我的文件树。我自己也检查过,似乎我已经正确加载了所有东西。
更新:重新加载引导程序以完全相同的代码解决了问题。不知怎的,我的第一次下载无法正常工作。
答案 0 :(得分:1)
尝试:
compress()
没有./而不是。
或CDN:
<script src="js/bootstrap.min.js"></script>
<link href="css/bootstrap.min.css" rel="stylesheet">
答案 1 :(得分:0)
尝试使用
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
在您的 HTML 头中。