Home > Article > Web Front-end > What are the browser privatization prefixes in css?
The browser privatization prefixes in css are: 1. Google Chrome and Apple Chrome [-webkit-]; 2. Firefox [-moz-]; 3. IE browser [-ms -】; 4. Open Browser【-o-】.
Browser privatization prefixes are as follows:
(Learning video sharing: css video tutorial)
-webkit-:GoogleApple
background:-webkit-linear-gradient(left,red,blue);
-moz-:Firefox
background:-moz-linear-gradient(left,red,blue);
-ms-:ie
background:-ms-linear-gradient(left,red,blue);
-o-:Open
background:-o-linear-gradient(left,red,blue);
Related recommendations: CSS tutorial
The above is the detailed content of What are the browser privatization prefixes in css?. For more information, please follow other related articles on the PHP Chinese website!