当我查看检查器时,我看到这会控制我的图像大小(来自模板中的css文件(joomla))
img {
border: 0 none;
height: auto;
max-width: 100%;
vertical-align: middle;
}
如果我删除高度:auto;图像的大小与我想要的大小完全相同
如何覆盖这个? 我将图像放在div
中#dealdataimage
{
width:100px !important;
height:100px !important;
}
并将高度宽度放在html中
<div id="dealdataimage">
<img src="gohere" alt="deal image" height="100" width="100" />
</div>
但在检查器中,图像为400 x 689(文件大小)
答案 0 :(得分:1)
#dealdataimage
{
width:100px !important;
height:100px !important;
}
您需要为div ID添加#
。否则它正在寻找一个html元素<dealdataimage>