The reason why it doesn't work is because your element uses idinstead classforselector
So from this:
<div id="link">
<div id="selector">
<a href="index.html">Home</a>
</div>
</div>
Change it like this:
<div id="link">
<div class="selector">
<a href="index.html">Home</a>
</div>
</div>
And your css, update yours .selectorand add .selector afor the text color:
.selector {
background-color: white;
padding-left: 5px;
padding-right: 5px;
padding-bottom: 3px;
font-weight: bold;
}
.selector a {
color: #4D4C4C;
}
Fiddle
, id , class. links id.