My header image is repeating at the top of the page, but it's not displaying in full width and leaving blank space on the sides. How can I fix this issue? Here's my current code:
<!DOCTYPE html>
<style>
.bgimg{
min-height: 44px;
background: url("img/top-bar.png") repeat top left;
}
</style>
<html>
<head lang="en">
<meta charset="UTF-8>
<title></title>
</head>
<body>
<header>
<div class="bgimg">
</div>
</header>
</body>
</html>