さて、私はブートストラップのウェルの色を変更しようとしましたが、それは機能しません。背景(ウェルの)として画像を設定しようとしましたが、動作しましたが、それは私が必要なものではありません。これは私のHTMLコードです:
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>
Default.aspx
</title>
<script src="Scripts/jquery-1.11.0.js" type="text/javascript"></script>
<link href="Styles/bootstrap.css" rel="stylesheet" type="text/css" />
<link href="Styles/bootstrap-theme.css" rel="stylesheet" type="text/css" />
<link href="Styles/Default.css" rel="stylesheet" type="text/css" />
<script src="Scripts/bootstrap.js" type="text/javascript"></script>
<script src="Scripts/Default.js" type="text/javascript"></script>
</head>
<body>
<div class="well well-lg"><h1 class="">TIDE File Generation</h1></div>
<div id="mainNavigator">
<ul class="nav nav-tabs">
<li><a href="/TideFileGeneration.aspx">Validate file</a></li>
<li><a href="/ImportCatalogs.aspx">Catalogs</a></li>
<li><a href="/InvoiceHistory.aspx">View History</a></li>
<li><a href="/Reports.aspx">Reports</a></li>
</ul>
</div>
</body>
</html>
そして、これは私のCSSコードです:
.well{
background-color: rgb(22, 105, 173);
}
ファイルDefault.cssにあります
よろしくお願いします。
うまくいくはずです。
Chromeの要素を試して調べて、他のcssが背景色を上書きしているかどうかを確認してください。デフォルトでは.wellに背景色が既に含まれています。
ブートストラップ3:
Background-colorではなくbackgroundプロパティを設定します。
.well {
background: rgb(22, 105, 173);
}
デフォルトのCSSで!importantを使用して、ウェルの背景色を上書きすることもできます。
.well{
background-color: cyan !important;
}
それは私のために働いた。