Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我连续有一系列跨度。在每个跨度内,我都有一个大于跨度的图像。
当前,图像的宽度设置为跨度的宽度。我想做的是使图像成为全宽,隐藏溢出。
有人可以让我知道如何在一个跨度内制作一个图像是它的原始宽度,而不是跨度的宽度吗?
谢谢
跨度可能将其内部的 img 的最大宽度设置为 100%。尝试使用以下方法覆盖该样式:
[class*="span"]img { max-width: auto !important; }
或类似的东西。