我正在尝试将图像定位在某个特定位置,因此我需要使用“top”、“left”参数,而不仅仅是“align: center”。我使用了下面的代码,但它无法将图像移动到屏幕上的任何位置,它在某个地方保持不变。
<img src="./assets/button.png" alt="button" position: absolute; width: 346px; height: 40px; left: 1041px; top: 546px;>
请帮助解决这个问题。提前致谢!
我正在尝试将图像定位在某个特定位置,因此我需要使用“top”、“left”参数,而不仅仅是“align: center”。我使用了下面的代码,但它无法将图像移动到屏幕上的任何位置,它在某个地方保持不变。
<img src="./assets/button.png" alt="button" position: absolute; width: 346px; height: 40px; left: 1041px; top: 546px;>
请帮助解决这个问题。提前致谢!
使用这样的东西。将所有css属性放入样式中
<img
src="./assets/button.png"
alt="button"
style="position:absolute; width:346px; height:40px; left:1041px; top:546px;"
>
像这样使用
<img src="./assets/button.png" alt="button" style="position: absolute; width: 346px; height: 40px; left: 1041px; top: 546px;">
此外,当您将其定位到特定位置时,您必须确定它相对于哪个位置。
假设你想要它相对于一个 div。使那个 div 的样式像这样
<div style="position: relative;">
// other codes here
</div>
问题是您缺少“样式”属性,否则您的代码应该可以正常运行。