I try alomst every display:
,<span>
,white-space
,overflow:auto
, etc, and search a lot on this site. How to eliminate does damns line breaks on that really specific case. Could you show me, even if its simple ? :)
window.onload = function() {
document.getElementById("container").style.width = screen.width + "px";
document.getElementById("container").style.height = screen.height + "px";
}
#container {
display: block;
float: left;
padding: 0px;
margin: 0px;
border: 0px;
background-color: indianred;
white-space: nowrap;
}
<div id="container">
</div>