Why is the CSS property not applying to the <nav>
element? Are we unable to style these specific Bootstrap tags on our own? If it is possible, how can we achieve this?
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/iJTQUOhcWr7x9JvoRxT2MZw1L" crossorigin="anonymous">
<nav class="navbar bg-dark nav-light shadow">
<h1 style="color:white">hello</h1>
</nav>