0
When using the source Source Sans Pro of Google Font, I noticed that just after the footer appears a spacing of 1px, at the end of the Document if it is loaded into the Internet Explorer (version 10).
How can I keep using this source and fix the problem?
Code snippet:
@import url(https://www.google.com/fonts#UsePlace:use/Collection:Source+Sans+Pro);
.TÍTULOS_1 {
font-family: "Source Sans Pro", sans-serif;
font-size: 30px;
text-indent: 0;
text-align: left;
font-weight: normal;
padding-left: 19px;
}
.SUBTÍTULOS {
font-family: "Source Sans Pro", sans-serif;
font-size: 30px;
text-indent: 0;
text-align: left;
font-weight: bold;
color: #F00;
padding-bottom: 19px;
padding-left: 19px;
}
<div id="MASTER">
<div id="MT">
Conteúdo principal aqui
<div>
<p class="TÍTULOS_1" id="PRIMEIRO_TÍTULOS_1">Telefone:</p>
<p class="SUBTÍTULOS">12345678</p>
<p class="TÍTULOS_1">E-mail:</p>
<p class="SUBTÍTULOS">endereç[email protected]</p>
</div>
</div>
<div id="FIXER">
Rodapé fixado no bottom da página aqui.
</div>
</div>
Post the HTML and CSS snippet with the problem and the source link so we can help you.
– ptkato
@Harison, you have several questions asking about "1px at the end of the page". I advise you to read about CSS Resets and Normalize, they are useful to make cross-browser development equal and can help you with most of these questions. Links to information on the above items: http://tableless.com.br/css-reset/ and https://necolas.github.io/normalize.css respectively.
– Rafael Kendrik
question under discussion at meta http://meta.pt.stackoverflow.com/questions/4488/usu%C3%A1rio-com-multiplas-questions-similar
– Rafael Kendrik
Similar: Unwanted 1px space in Internet Explorer
– Rafael Kendrik