Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/wordpress/11.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
为什么我的wordpress中的每个图像都变大了?即使图像的大小很小_Wordpress_Image_Image Size - Fatal编程技术网

为什么我的wordpress中的每个图像都变大了?即使图像的大小很小

为什么我的wordpress中的每个图像都变大了?即使图像的大小很小,wordpress,image,image-size,Wordpress,Image,Image Size,图像的大小只有15x15。当我输入wordpress时。它会自动变大。我想要默认的尺寸。我放在wodpress里的每一张图片都越来越大了。即使我没有任何代码使它变大 这是我的密码: <img src="http://mainvasdaq.compy.global/wp-content/uploads/2017/12/Square_ble_Right-1.png" style="width"50%;" /> 看起来您的内联样式中有一个输入错误: <img src="htt

图像的大小只有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%;" />
注意上述语法中属性和值之间的


更多信息可以在

中找到,css写为

.dt-header-image img {
    width: 100%;
} 
在您的style.css行号1846中

请评论或添加以下css

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

您上面提到的代码是一个错误,它应该是这样的style=“width:50%”。
.dt-header-image button img {
    width: auto !important;
}