css 如何将选框图像对齐到屏幕上的特定位置?

h6my8fg2  于 12个月前  发布在  其他
关注(0)|答案(2)|浏览(118)

我的代码现在看起来有点像这样:

<marquee>
<img src="https://cdn140.picsart.com/274296681002211.png" alt="Mushroom" width="100" height="100">
</marquee>

字符串
我是一个新手,并尝试使用**style=""**代码,但它似乎只是打破一切。

kq4fsx7k

kq4fsx7k1#

在你的图片周围放一个div,这样你就可以很容易地用css调整位置了。查看这个链接以获得进一步的说明:https://www.w3schools.com/css/css_positioning.asp

超文本标记语言

<div class="image">
  <marquee>
    <img src="https://cdn140.picsart.com/274296681002211.png" alt="Mushroom" width="100" height="100">
  </marquee>
</div>

字符串

CSS

.image{
  position: absolute;
}


作为替代,你可以使用inline style和style="”属性。

<div style="position:absolute">

uyhoqukh

uyhoqukh2#

我最近也面临着同样的问题,我尝试了所有的方法。唯一对我有效的方法是定位跑马灯标签本身。
这是我的代码;根据您的喜好编辑它:

<marquee direction="right" behaviour="scroll" width="520px" height="54"  style="position:relative; top:-45px; left:30px; ">
    <img src="https://i.ibb.co/CBqPfyB/39a6b82755074cac22750d3a5b85837e-removebg-preview.png" alt="strawberry shortcake" width="100" height="100"  style="position:relative; top:-20px; ">
</marquee>

字符串
希望这个工作!
(我知道这个问题是3年前的事了,哈哈,但我想为正在寻找解决方案的人回答这个问题)

相关问题