我正在燒瓶中製作Web應用程序,並在我的前端使用引導程序。外部CSS文件位於應用程序的/靜態。問題是外部CSS中的屬性不適用於元素。外部CSS文件在引導程序中不起作用
form.html
<head>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css" integrity="sha384-rHyoN1iRsVXV4nD0JutlnGaslCJuC7uwjduW9SVrLvRYooPp2bWYgmgJQIXwl/Sp" crossorigin="anonymous">
<link href="{{ url_for('static', filename='style.css') }}" rel="stylesheet">
</head>
form.html
<div class="jumbotron">
<div class= "container">
<h1>Application</h1>
</div>
</div>
的style.css
.jumbotron {
background-color: #191970;
height: 100px;
}
您是否在瀏覽器控制檯中看到任何錯誤? – DavidG
@DavidG不,瀏覽器控制檯沒有錯誤! – Pooneh