Despite having the same styling and no typing errors, I am still facing an issue with the first column not being styled correctly. It appears as nothing but text inside a column square.
HTML:
<div class="container-fluid">
<!--Nav Bar-->
<div class="row">
<div class="col nav-bar-items">Home</div>
<div class="col nav-bar-items">About</div>
<div class="col nav-bar-items">Projects</div>
<div class="col icon-items">
<a class="icon-linkedin social-button borderless" href="http://linkedin.com/in/robert-renecker-85a561b8"></a></div>
<div class="col icon-items">
<a class="icon-github social-button borderless"href="http://github.com/robertrenecker"></a></div>
<div class="col nav-bar-items">Contact</div>
</div>
</div>
CSS:
.col + .nav-bar-items{
font-weight:600;
font-size: 25px;
font-family: 'Source Code Pro', monospace;
color: #99ebff;
border-bottom: solid 5px #99ebff;
border-right: solid 5px black;
}
.col + .nav-bar-items:hover{
background-color: #99ebff;
border-bottom: solid 5px black;
color:black;
}