图片大小问题,宽度和高度不工作

Image size issue, width and height not working

这是样式:style="width:30px;height:30px; 我尝试将其和其他 CSS 添加到图像中,但仍保持原始大小?

可能图片大小在其他地方被覆盖了。为了解决这个问题,

style="width: 30px !important;height: 30px !important;"

!important 指定给定的 属性 应该覆盖任何其他 class 属性 或图像 属性

尝试将代码写在正文中而不是样式中,看看是否可行。

您的 CSS 可能会被任何其他 CSS 覆盖,若要考虑您的 CSS,您可以使用 !important For ex

style="width: 30px !important;height: 30px !important;"  

如果你能分享你的 html 和 css 代码就更好了。

直接在你的 img 标签中使用这个

宽度="30" 高度="30"