I would like to have some spacing between the top of my page and my logo. However, when I use the print preview in Chrome, no space is showing up at all.
This is my HTML:
<div class="container">
<img src="design/images/logo.png" alt="logo" class="logo" />
</div>
This is my CSS:
.container {
max-width: 450px;
padding-top: 10px;
padding-bottom: 10px;
background: red;
}
img.logo{
width: 337px;
height: 76px;
margin: 10px auto 0 auto;
padding-bottom: 20px;
float: none;
display: block;
}