Zooming out on Google Chrome browser makes the header
's background image seemingly disappear. The image has a width of 1px, but it repeats horizontally.
HTML
<html>
<body>
<div id="wrapper">
<header id="header">
<div id="Nav-Bar"></div>
</header>
</html>
CSS
#header {
width: 100%;
height: 220px;
background: url("img/headerpattern.png") repeat-x;
background-size: 1px 165px;
}
I would like for the layout of the page to remain intact whether someone zooms in/out. What causes this behavior?