so I have this CSS file and it has this
.post > a {
position: absolute;
color: #fff;
font-size: 22px;
cursor: pointer;
}
and I'm not sure what does the a means exactly?
so I have this CSS file and it has this
.post > a {
position: absolute;
color: #fff;
font-size: 22px;
cursor: pointer;
}
and I'm not sure what does the a means exactly?
Selects all <a>
elements where the parent is an element with a class post
.
https://developer.mozilla.org/en-US/docs/Web/CSS/Child_combinator