1
我有兩個超大屏幕在我的網頁,它的HTML:修改只是一個超大屏幕的背景
<div class="jumbotron jumbotron-fluid">
<div class="container">
<h3 class="display-5">TEST</h3>
,我想改變只有一個顏色,但是當我編輯它的CSS方面的變化。
.jumbotron-fluid{
background-color: red!important;
}
我試圖把一個id和改變背景使用它,但沒有奏效。
向第一個jumbotron添加新類,如'bg-red'。在CSS中添加'.bg-red {background-color:red!important; }'。或者你可以使用這個CSS選擇器,只爲第一個:'.jumbotron:first-child {background-color:red!important; }' – fen1x
謝謝:)它工作! – Lucky