I'm trying to figure out this CSS example from w3schools:
.sidenav {
height: 100%;
width: 0;
position: fixed;
z-index: 1;
top: 0;
left: 0;
background-color: #111;
overflow-x: hidden;
transition: 0.5s;
padding-top: 60px;
text-align:center;
}
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
Clearly, sidenav is the element's class and one might reason that the "a" is a selector for sidenav after the transition... but I can't find a direct definition with examples, so I'm looking to my superiors here for clarification before I go off misusing this.
In short, what is the "a"?
Help and thanks!