膨胀大小的Webhost固定广告? (在底部)

时间:2017-10-28 02:59:06

标签: html web

什么会导致此虚拟主机广告如此之大? (在底部) https://scottschmidtportfolio.000webhostapp.com/

这是它的大小? https://solenoidal-slate.000webhostapp.com/

您认为我的代码中有什么内容吗?我删除了所有代码,然后重新制作。

很抱歉,如果这是错误的部分

1 个答案:

答案 0 :(得分:0)

更改style.css中行号为91的img样式 像这样:

img {
   overflow: hidden;
   /*width: 240px; 
   height: 109px; 
   min-width: 240px; 
   min-height: 200px; 
   max-width: 240px; 
   max-height: 110px; */
   position: relative;
   display: block;
   margin: auto;
   margin-left: auto;
   margin-right: auto;
}

img是一般选择器,因此会影响所有图片标记。尝试使用针对特定元素的更具体的选择器。我可以看到你网站上的所有图片都被拉伸了,我认为这是因为上面的代码。