SASS
February 22, 2019

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
        }
    }
}