为什么我的 wordpress 中的每张图片都变大了?即使图像的尺寸很小

why every image in my wordpress get large? even though the size of the image is small

图片尺寸仅为 15x15。当我放入 wordpress 时。它自动变大。我想要默认大小。我放在 wodpress 中的每张图片都越来越大。尽管我没有任何代码可以让它变大。

这是我的代码:

<img src="http://mainvasdaq.compy.global/wp-content/uploads/2017/12/Square_ble_Right-1.png" style="width"50%;" />

您的内联样式中似乎有错字:

<img src="http://mainvasdaq.compy.global/wp-content/uploads/2017/12/Square_ble_Right-1.png" style="width:50%;" />

内联样式的一般格式如下:

style="attribute:value"

注意上述语法中属性和值之间的 :

可以在 w3c or in MDN

中找到更多信息

有css写成

.dt-header-image img {
    width: 100%;
} 

在您的 style.css 行号 1846 中。

请发表评论或在下方添加 css

.dt-header-image button img {
    width: auto !important;
}