When reloading the page the icons of a webfont are loaded only after loading the CSS and this causes a "dancinha" in the text.
See below the unwanted behavior of the icon when reloading the page:
ThesourcecodeformyCSS:
@font-face{font-family:"icons";
src:url("../fonts/icons.eot");
src:url("../fonts/icons.eot?#iefix") format("embedded-opentype"),
url("../fonts/icons.woff") format("woff"),
url("../fonts/icons.ttf") format("truetype");
font-weight:normal;
font-style:normal;
}
.i {
font-family:"icons";
display:inline-block;
vertical-align:middle;
line-height:1;
font-weight:normal;
font-style:normal;
speak:none;
text-decoration:inherit;
text-transform:none;
text-rendering:auto;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}
.i--menu:before {
content:"\f117";
}