2014-06-10 79 views

回答

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; 
} 
....