Home  >  Article  >  Web Front-end  >  What are the browser privatization prefixes in css?

What are the browser privatization prefixes in css?

王林
王林Original
2020-11-20 14:26:452492browse

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-】.

What are the browser privatization prefixes in css?

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn