How to write a correct CSS code in Navi+
Level 1: Internal Stylesheet / CSS (#SF-123456789)
// Your CSS code
{
margin-bottom: 64px;
}
@media only screen and (max-width: 600px) {
{
margin-bottom: 164px;
}
}// The CSS code after being compiled
#SF-123456789 {
margin-bottom: 64px;
}
@media only screen and (max-width: 600px) {
#SF-123456789 {
margin-bottom: 164px;
}
}
Level 2: Global Stylesheet / CSS
Last updated