seems khtml might actually need the prefix for background-clip

This commit is contained in:
Eric Meyer 2012-01-13 16:13:22 -07:00
parent 236efc264b
commit 0642deebc6
2 changed files with 2 additions and 1 deletions

View File

@ -37,7 +37,7 @@ $default-background-clip: padding-box !default;
not -webkit, not -webkit,
not -o, not -o,
not -ms, not -ms,
not -khtml, -khtml,
official official
); );
} }

View File

@ -1,4 +1,5 @@
.background-clip { .background-clip {
-moz-background-clip: border; -moz-background-clip: border;
-webkit-background-clip: border; -webkit-background-clip: border;
-khtml-background-clip: border-box;
background-clip: border-box; } background-clip: border-box; }