這個CSS位應該將我的圖像從右邊緣稍稍移動到左邊,但它不會。圖像現在位於左邊緣。動態CSS - 移動圖像
<?php
$var=60;
?>
<style type="text/css">
p.first {
background-color: #ffffff;
width: 25px;
height: 25px;
overflow: hidden;
position: fixed;
bottom:0px;
right: <?php echo $var; ?>px;
margin: 0px;
padding: 0px;
}
</style>
<p class="first"><img src="images.jpg" /></p>
我用你的代碼,它仍然無法正常工作。 – user659822 2011-03-23 04:17:56