我需要自动缩小图像下方的文本包装宽度。
例如:
<figure>
<img src="mypicture.jpg" />
<figcaption>
This is a long description.This is a long description.This is a long description.
</figcaption>
</figure>
现在我想要一个border
around img
and figcaption
,因为我有很多不同宽度的图像。所以我想自动缩小figcaption
宽度以适应图像的宽度。也就是说,如果我有一个宽度为 100 像素的图像,那么我figcaption
也想要我的 100 像素。
你能告诉我我是否可以在没有 js 的情况下做到这一点,只使用纯 html 和 css 吗?