Image caption width to same as image

前端 未结 6 762
生来不讨喜
生来不讨喜 2020-12-25 13:16

How can I make image caption width same as image? Now I have the following code:

\"\" &
6条回答
  •  没有蜡笔的小新
    2020-12-25 13:39

    So the problem is that you don't know how wide the img will be, and the caption for the img may exceed the width of the img, in which case you want to restrict the width of the caption to the width of the img.

    In my case, I applied display:table on the parent element, and applied display:table-caption and caption-side:bottom on the caption element like this:

    This is the caption.

提交回复
热议问题