1
2<!---------------- How do I override Bootstrap CSS? ------------------->
3
4If your custom styles are not overriding the bootstrap styles, all you
5need to do is move the link to your custom stylesheet to a line after
6the bootstrap link:
7
8<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" rel="stylesheet">
9<link rel="stylesheet" href="styles.css">
10
11This means that you first load the default bootstrap styles, then you
12can override some of those components with your own custom CSS.
13