gpt4 book ai didi

html - 我无法移动图像,我该怎么办?

转载 作者:行者123 更新时间:2023-11-28 16:56:59 25 4
gpt4 key购买 nike

我正在尝试移动图像 (map.png),但我无法移动它。

我的 HTML 代码是:

<div class="map">      
<h3 style="text-align:right;" >
<img src="img/map.png" alt="">
</h3>
</div>

我的 CSS 代码是:

.map {
position: relative;
top: 20px;
}

我有一个 GitHub 存储库: https://github.com/t0091/bootstrap

最佳答案

我仍然不确定您实际想要实现的目标。但是,我已经为您编写了代码,并以图像垂直和水平居中的方式重新编写了代码。您可以在 .image-content 类中添加任何您想要的 css。

HTML

<div class="flex-display">
<div class="image-content">
<img src="https://via.placeholder.com/150" alt=""> //Use you correct image path
</div>
</div>

CSS

.flex-display {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
height: 100vh;
}

.image-content {
// Write your image styling here if needed
}

关于html - 我无法移动图像,我该怎么办?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56140347/

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