I want to make a responsive header. Which's ratio will be 6.1:1 or something else. I know how to make a responsive width but I don't know how to maintain ratio. How I'm gonna do that?
<div id="master">
<div id="header">This is header</div>
</div>
css
#master {width:90%;min-height:800px;margin:0 auto}
#header {width:100%; height:150px;background-color:grey}