forked from a64f7bb4-7358-4778-9fbe-3b882c34cc1d/v1
15 lines
330 B
CSS
15 lines
330 B
CSS
/*
|
|
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
|
|
} |