I need to create a black "bar" on the top. The black stripe must be 10% of the maximum height the browser can reach. I need to lock the stripe to allow page scrolling and keep bar on the page.
This is something similar to youtube top bar.
I tried this:
.Header {
position:fixed;
display: flex;
top:0;
left:0;
width:100%;
height: 10%;
background-color:#333333;
}
but this let me have 10% of the actual maximum size, if I stretch the window the height size changes, I need to lock 10% of maximum size I can reach