gpt4 book ai didi

javascript - 我试图使用带按钮的 figcaption 将图像彼此相邻放置 HTML 和 CSS

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

我想在网页上的图片下方添加按钮,因此我决定使用 figcaption 标签在每张图片下方插入按钮。但是,当我这样做时,图像会堆叠在一起,而不是像通常那样并排放置。

**My HTML:**

<section class="mostpurch">
<h1> Latest PC downloads... </h1>
<p> Most purchased on PC </p>
<img src="images/fallout-4.jpg" class="f41" />
<figcaption><button type="button">Add to basket</button></figcaption>
<img src="images/Tom-Clancys-The-Division.jpg" class="tctd1" />
<figcaption><button type="button">Add to basket</button></figcaption>
<img src="images/blops3.jpg" class="blops31" />
<figcaption><button type="button">Add to basket</button></figcaption>
<img src="images/acsyn.jpg" class="acsyn1" />
<figcaption><button type="button">Add to basket</button></figcaption>
</section>

我不确定我必须在我的 HTML 或 CSS 中做什么才能使它成为可能。 How it currently is (image)

我想让它们并排坐着,下面有按钮。抱歉,如果有更好的方法,我是新手。

提前致谢

- jack

最佳答案

html

<section class="mostpurch">    
<h1> Latest PC downloads... </h1>
<p> Most purchased on PC </p>
<div>
<img src="images/fallout-4.jpg" class="f41" />
<figcaption><button type="button">Add to basket</button></figcaption>
</div>
</section>

CSS

div{display: inline;}

关于javascript - 我试图使用带按钮的 figcaption 将图像彼此相邻放置 HTML 和 CSS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34094761/

27 4 0
文章推荐: css - 使用 flex 单元作为元素的边距/填充?
文章推荐: java - 从 JFrame (linux) (eclipse) 运行可执行文件
文章推荐: java - 将 ListArray 从 Servlet 传递到在 Windows 中工作但在 Linux 中失败的 JSP