summaryrefslogtreecommitdiffstats
path: root/admin/survey/minify/vendor/tubalmartin/cssmin/tests/fixtures/background.css
blob: 5c9b02a21a889b075499ceae4f9849e3febabc44 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
background: transparent = background: none, and both can be shortened to background:0 0
see: http://stackoverflow.com/questions/20784292/backgroundnone-vs-backgroundtransparent
*/
a {
    background: none;
    background: transparent !important;
}
b {
    background:transparent;
    background:none
}
c {
    background: 0 0
}