我有带标题的图像,如下所示:
<figure class="imageBoxShadow">
<img alt="Alt-Text" src="http://lorempixel.com/280/375">
<figcaption>A Caption for this image</figcaption>
</figure>
“imageBoxShadow”类在图像周围放置了一个 boxShadow(谁会猜到?)。我把它放在图上,因为标题应该在边界内。只要标题更小然后图像很宽,它就可以正常工作。
但是,如果我有一个小图像和/或长标题,则标题将尽可能地扩展图形元素,这看起来很愚蠢。
当然,我可以通过添加硬编码样式来设置宽度来限制图形元素:
<figure class="imageBoxShadow" style="width: 100px">
<img alt="Alt-Text" src="http://lorempixel.com/100/150">
<figcaption>Using a hardcoded style to restrict the figure element works but feels stupid.</figcaption>
</figure>
但这在 CMS 上下文中感觉很愚蠢而且不太方便。
有一个更好的方法吗?
有一个 jsFiddle 链接可以查看:http: //jsfiddle.net/Sorcy/h5sNB/