0
why isn't the animations of html work in google sites?
3 Respostas
+ 1
Remember, when using A Google Browser, ex: Chrome, use the Vendor Prefix "-webkit" before any CSS attribute
for example:
FOLLOWING WON'T WORK IN GOOGLE-SITES
div {
background:-moz-linear-gradient(#000000, #FFFFFF)
}
FOLLOWING WILL WORK IN GOOGLE-SITES
div {
background:-webkit-linear-gradient(#000000, #FFFFFF)
}
A few prefixes:
Chrome:
-webkit-
Opera:
-o-
Mozilla:
-moz-
0
thank you .Does that prefix works for html tooo?
0
yea