Browser prefix (css attribute compatible file)

There are some css attributes that are not fully supported yet, and each browser kernel does its own. Therefore, if you want to be compatible with each browser, you need to add a prefix to these attributes to indicate compatibility with Firefox/Google/IE/Open kernel

If the ababa attribute,

  • -moz-ababa:18px; //It will definitely work in Firefox
  • -webkit-ababa:18px; //Google definitely can use
  • -ms-ababa:18px; //IE
  • -o-ababa:18px; //openg
  • ababa:18px; //Remember to add this at the end, in case you support it later

值得一提的是,safari浏览器、360急速、猎豹、世界之窗都是用的谷歌内核

Guess you like

Origin blog.csdn.net/weixin_45629623/article/details/111517824