gpt4 book ai didi

css - 当
的内容宽度超过 兄弟的宽度时,使
呈现滚动条

转载 作者:可可西里 更新时间:2023-11-01 15:01:49 26 4
gpt4 key购买 nike

我正在尝试制作 <figcaption>当内容的宽度超过 <img> 的宽度时元素呈现滚动条兄弟,通常是当内容是一个长 URL 或一个很长的单词时。

以下代码改编自this answer它适用于 IE 11 和 Edge 15,但不适用于 Firefox 55 和 Chrome 61:

* {
outline: 1px solid red;
}

figure {
display: table;
max-width: 100%;
}

figure img {
vertical-align: top;
}

figure figcaption {
display: table-caption;
caption-side: bottom;
overflow: auto;
}
<figure>
<img src="//via.placeholder.com/220x100" alt="">
<figcaption>Long word in figure caption Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatak</figcaption>
</figure>

最佳答案

我找到了一个基于这个 answer 的解决方案我将其应用于原始问题中的代码片段:

* {
outline: 1px solid red;
}

figure {
display: inline-block;
position: relative;
margin: 0 auto;
max-width: 100%;
}

figure img {
height: auto;
max-width: 100%;
vertical-align: top;
}

figure figcaption {
left: 0;
overflow: auto;
position: absolute;
right: 0;
}
<figure>
<img src="//via.placeholder.com/220x100" alt="">
<figcaption>Long word in figure caption Lopadotemachoselachogaleokranioleipsanodrimhypotrimmatosilphioparaomelitokatak</figcaption>
</figure>

关于css - 当 <figcaption> 的内容宽度超过 <img> 兄弟的宽度时,使 <figcaption> 呈现滚动条,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46459821/

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