I'm trying to get my logo to become responsive. Here's a fiddle, and the logo there IS responsive, but on my local machine it's not responsive... https://jsfiddle.net/jfzqbshs/
Here's a GIF showing my local machine GIF
HTML
<div class="header">
<img id="logo" src="assets/logo.png">
</div> <!--/ header -->
CSS
.header{
width:100%;
box-sizing: border-box;
padding-left: 1%;
padding-top:1%;
padding-bottom: 1%;
border-bottom: 1px solid #474547;
}
#logo {
display: block;
max-width: 100%;
height: auto;
}
Thank you.