I don't remember where I saw it or what language variation it claimed to be but I saw a style rule that had a declaration within another. It was something like the below.
nav ul {
list-style-type: none;
li {
color: #fff;
}
}
I'm pretty sure it looked something like that and if I guessed correctly it would be the same as this:
nav ul {
list-style-type: none;
}
nav ul > li {
color: #fff;
}
Can someone tell me what variation of CSS this is so I can learn more on it as it seems to be a lot simpler.