gpt4 book ai didi

html - Figcaption 不比图像宽

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

我有一个问题,figcaptionimg 宽,因此突出到它的右边。我对标题的 width 进行了硬编码并且它有效,但仅适用于相同宽度的图像。

enter image description here

HTML

<figure>
<img src="http://i.imgur.com/tVeUqlH.jpg"/>
<figcaption>Vader enjoying the beach.</figcaption>
</figure>

CSS

figure {
border: 1px solid black;
display: inline-block;
padding: 3px;
margin: 10px;
}
figure img {
vertical-align: top;
}
figcaption {
text-align: center;
border: 1px dotted blue;
width: 120px;
}

jsFiddle

最佳答案

您可以使用display: table-caption;

.imagecaption {
padding: 3px;
margin: 10px;
float: left;
border: 1px solid black;
}
figure {
display: table;
margin: 0px;

}

figure img {
display: block;
}

figcaption {
display: table-caption;
caption-side: bottom;
text-align: center;
border: 1px dotted blue;
}
<div class="imagecaption">
<figure>
<img src="http://i.imgur.com/tVeUqlH.jpg"/>
<figcaption>Vader enjoying the beach.</figcaption>
</figure>
</div>

关于html - Figcaption 不比图像宽,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28394007/

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