介绍
单击 Firebug 上的 css 选项卡时,有一个名为“扩展速记属性”的选项可用!
一个典型的css规则如下:
border-left:2px solid #7FA100;
..被转换为“扩展”版本,如下所示:
border-left-color-ltr-source:physical;
border-left-color-rtl-source:physical;
border-left-color-value:#7FA100;
border-left-style-ltr-source:physical;
border-left-style-rtl-source:physical;
border-left-style-value:solid;
border-left-width-ltr-source:physical;
border-left-width-rtl-source:physical;
border-left-width-value:2px;
我的问题/问题
我在一个项目中工作,设计师直接引入包含“扩展”性质的规则的样式表。
1)它们是正确的CSS规则吗?
2)是否所有(或任何,或哪些)浏览器直接识别这些扩展规则?
谢谢, ds