Firebug kills -webkit Settings in CSS File - Why?

后端 未结 2 432
执笔经年
执笔经年 2021-01-23 09:05

style.css - Original File

.box { -webkit-border-radius:8px; -moz-border-radius:8px; padding:10px;  }

style.cs

2条回答
  •  离开以前
    2021-01-23 09:29

    Firebug handles only Gecko's native rules (styles). Gecko is a browser engine, used in Firefox (http://ru.wikipedia.org/wiki/Gecko).

    -webkit is used by another browser engine, so it is ignored. similar to -ms ("Trident" engine - IE8), -o (Presto - Opera), or -khtml (KHTML - Konqueror).

提交回复
热议问题