Why isn't the CSS property applying to <nav>
? Can we not do our own styling on these tags of bootstrap? If we can, how?
nav{
display: none;
}
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<nav class="navbar bg-dark nav-light shadow">
<h1 style="color:white">hello</h1>
</nav>