I'm a little confused about the specificity here...
.container-fluid, .row, .col-md-12, .jumbotron, h2 {
background-color: blue;
}
.container-fluid.row.col-md-12.jumbotron, h2 {
background-color: blue;
}
Works, but either of these sets of code individually don't work...
HTML is:
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<div class="jumbotron">
<h2>
Hello, world!
</h2>
What is the correct way to override bootstrap CDN(or bootstrap.min)with my local CSS file?
My files are linked like this:
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">