当制作一个覆盖“父样式表”某些部分的新“子样式表”时,这将特别有用。
例如,在制作RTL version of a WordPress theme时,我会保留所有水平定位属性并删除其余属性。
有没有办法或工具来实现这一目标?
答案 0 :(得分:0)
我认为最可行的解决方案是使用php等直接在css文件中编写。所以在css.php文件中:
<?php
header("Content-type: text/css; charset: UTF-8");
if($rtl){
$direction = "right";
}else{
$direction = "left";
}?>
.selector{
<?php echo $direction; ?>: 20px;
}
....