gpt4 book ai didi

php - 动态 CSS - 移动图像

转载 作者:太空宇宙 更新时间:2023-11-04 16:26:36 24 4
gpt4 key购买 nike

这个 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>

最佳答案

避免在这种情况下使用位置属性。尝试使用边距/填充“将我的图像从右边距向左移动一点”

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

关于php - 动态 CSS - 移动图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5400775/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com