For example, using border-radius will be outputted in the css with browser-specific prefixes (-moz, -webkit...).
The same should be done for background gradient for cross browser support.
The possibilities that I'm aware of are:
----
To not open a separate thread, same type request: adding that for css 'transition' would be also great.
The same should be done for background gradient for cross browser support.
The possibilities that I'm aware of are:
HTML:
background: -moz-linear-gradient();
background: -webkit-gradient();
background: -webkit-linear-gradient();
background: -o-linear-gradient();
background: -ms-linear-gradient();
background: linear-gradient();
filter: progid:DXImageTransform.Microsoft.gradient();
----
To not open a separate thread, same type request: adding that for css 'transition' would be also great.
Last edited:
Upvote
1