I saw the following code style which is something that is completely new to me:
#nav {
position: absolute;
right: 0;
ul {
li {
float: left;
a {
display: block;
color: white;
text-decoration: none;
padding: 0 10px;
}
}
}
}
What is the technical name for this and where can I read up on it?