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.
这里
如何使图像在此主题下变为原始大小或按比例调整大小(宽度/高度=原始宽度/原始高度))?
也许应该修改主题的css?
Bootstrap 包含样式img { max-width: 100%; }。在大多数情况下,这就是您想要的……大于可视区域的图像将被缩放以适应。要覆盖,请使用 value none。您应该尝试通过向样式表添加新的选择器来仅定位您想要成为全宽的图像。在您的情况下,我将使用以下 CSS:
img { max-width: 100%; }
none
.Output img { max-width: none; }