2014-06-10 81 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; 
} 
....