gpt4 book ai didi

css - 我无法在 CSS 中移动我的 img 元素

转载 作者:太空宇宙 更新时间:2023-11-04 11:35:41 25 4
gpt4 key购买 nike

为什么我不能将图片向左移动一点?我可以将它向右移动,但不能向左移动。我使用了边距和填充;都没有用。这是 HTML:

<aside id="sidenews">
<img src="live.jpg" alt="Mountain View">

和 CSS:

#sidenews {
float:right;
margin: 40px 0px;
padding:15px;
border:1px solid yellow;
height: 305px;
width: 247px;
}

aside img {
margin:0px;
margin-right:5px;
}

最佳答案

将你的 aside img 从 margin: 0;margin-right: 0; 更改为 margin: 0 5px 0 0; 因为你的margin: 0; 使您的 margin-right 无法使用,除非您想添加 margin-right: 5 !important;

aside img {
margin: 0 5px 0 0; /* this will work */
}

关于css - 我无法在 CSS 中移动我的 img 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31776738/

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