Home

Search IconIcon to open search

CSS tips and hacks

# Misc

You can combine pseudo-classes:

1
2
3
4
5
6
7
button:hover:enabled{
    /*your styles*/
}

button:active:enabled{
    /*your styles*/
}

# Centering text inside of <a>

The easiest way is to use line-height or padding.

# Beware of overflow

#tbd