-2
Website: http://hfoliveira.com.br/MAQUES/CONT.html
Here is the problem shown: imageshack.com/a/img909/690/Ajeilg.png
The other question was I who posted, posted again because I have not yet had an answer that would solve the problem.
My problem only occurs in internet explorer, I highlighted the lower div in red for viewing. When resizing the window by decreasing its size, there is a space of approx. 1px in size, an unknown blank space. What can be this?
html:
<div class="MASTER">
<div class="MT_SEM_SOMBRAS">
<!-- ... o conteúdo do site vai aqui... -->
<div id="push">
</div>
</div>
<!--FIM MT SEM SOMBRAS-->
</div>
<!--FIM MASTER-->
Css:
Div push (the one in red):
#push {
margin-left:auto;
margin-right:auto;
width:1155px;
height:227px;
background-color:#F00;
}
Container 1 of the site:
.MASTER {
width:1169px;
margin-left: auto;
margin-right: auto;
min-height: 100%;
height: auto !important;
height: 100%;
margin-top: 0;
margin-left:auto;
margin-right:auto;
margin-bottom:0;
overflow:hidden;
}
/*html .MASTER {
height: 100%; hack para IE6 que trata height como min-height
}*/
Container 2 of the site:
.MT_SEM_SOMBRAS {
width:1155px;
margin-left:auto;
margin-right:auto;
}
Please post your HTML and CSS code so we can help you understand and resolve.
– Erick Gallani
in your Style.css file, the #push property, change the height to 235px and see if this can help you
– Thiago Friedman
The space occurs after the div which is in red, when resizing only the height. Only occurs in internet explorer.
– Harison
Harison, try putting a * { box-Sizing: border-box tag in your CSS code }
– Erick Gallani
It didn’t work. @Erickgallani
– Harison
There are in my code empty Ivs of content, which has only a background image. This could be it?
– Harison
Possible duplicate of Unwanted 1px space in Internet Explorer
– Chun
question under discussion at meta http://meta.pt.stackoverflow.com/questions/4488/usu%C3%A1rio-com-multiplas-questions-similar
– Rafael Kendrik