错误min-height和margin-right和

时间:2014-07-16 20:16:49

标签: html css wordpress

我对我正在开发的网站的CSS有一些问题。这是一家使用wordpress woocommerce的商店。当我尝试启用" min-height" 100%发生此错误。

html, body, #bodychild{
    height: 100%;
    min-height: 100%;
}

enter image description here

另一个问题是,与我不同的是:当浏览器窗口调整大小时,它会发生: enter image description here

对于mistoria还有一个余地,我无法删除。 enter image description here

  
    

See the online site! <<

  

1 个答案:

答案 0 :(得分:1)

第二个问题的解决方法在你的CSS中。 #footercontainer的宽度设置为100%,左边距为10px。因为整个div比屏幕宽10px。

解决方案:

    #footercontainer {

         padding: 20px 0px 15px 0;
         margin-left: 0px;
         padding-left: 1%;
         width: 99%;
                     }