Skip to main content

SASS

CSS Common Terminologies

1
2
3
4
5
6
7
8
9
# Rule Set
.button { # Selector
    &:hover { # Pseudo Class
        &::after { # Pseudo Element
            padding: 8px; # Property: Value
            margin: auto; # Decleration
        }
    }
}
Previous CDI Next NGINX