3
の幅を超えていたときに、コンテンツが長いURLであるとき、私は一般的に、それはコンテンツの幅が<img>
兄弟の幅を超えていたときに<figcaption>
要素がスクロールバーを描画するためにしようとしているスクロールバーをレンダリングしてくださいか、非常に長い言葉。私はこのanswerに基づく解決策を見つけた<figcaption>が、それはコンテンツの幅が<img>兄弟
* {
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>
IE 11とEdge 15の外観は次のとおりです。https://i.stack.imgur.com/DPIUa.png –