图像大小不采用本地参数 - 使用高度:自动从不同的文件

时间:2014-05-16 17:58:29

标签: html css

当我查看检查器时,我看到这会控制我的图像大小(来自模板中的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(文件大小)

1 个答案:

答案 0 :(得分:1)

#dealdataimage
{
  width:100px !important;
   height:100px !important;
}

您需要为div ID添加#。否则它正在寻找一个html元素<dealdataimage>