Hey there, I have a question that may seem a bit silly, but I'm just starting out with coding.
I'm trying to resize and center my logo image (which is currently taking up the whole page in preview), but no matter what I try with CSS, nothing seems to work. What am I missing??
So far, in my HTML file, I only have the following:
<div class="header">
<img class="logo" src="images/logo.png" alt="\Stuff logo">
</div>
And in my CSS file, I've tried these lines:
body {
margin: 0 auto;
}
.logo {
max-width: 20%;
max-height: 20%;
}