此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>

最佳答案

在这种情况下,请避免使用position属性。尝试使用边距/填充“将我的图像从右边距稍微向左移动”

<style type="text/css">
    p.first {
        background-color: #ffffff;
        width: 25px;
        height: 25px;
        overflow: hidden;
        padding-left: <?php echo $var; ?>px;
        margin: 0px;
    }
</style>

07-24 09:49
查看更多