Browser kernels supported by css3: 1. Webkit, the private attribute prefix is "-webkit-"; 2. Gecko, the private attribute prefix is "-moz-"; 3. Presto, the private attribute prefix is " -o-"; 4. KHTML, the private attribute prefix is "-khtml-"; 5. Trident.
The operating environment of this tutorial: Windows 10 system, CSS3&&HTML5 version, Dell G3 computer.
1. Webkit kernel:
Browsers that use this engine kernel are: Safari (including mobile version and Desktop version), Chrome.
The prefix of its private properties is -webkit-.
2.Gecko kernel:
The browsers that use this engine kernel include Mozilla, which often refers to the Firefox browser.
The prefix of its private properties is -moz-.
3. Presto kernel:
The browser using this engine kernel refers to Opera.
The prefix of its private properties is -o-.
4.KHTML core:
The browser using this engine core refers to Konqueror.
The prefix of its private attributes is -khtml-.
5.Trident kernel:
The browser using this engine kernel is IE browser.
The prefix of its private properties is -ms-.
(Learning video sharing: css video tutorial)
The above is the detailed content of Which browser cores are supported by css3?. For more information, please follow other related articles on the PHP Chinese website!