Well, we all use headers, and usually use position: fixed; to fix the header to the top of the page. But what to do if we want 2 headers, one big, main one, and one smaller, for secondary links, for example? I made some research and found tip to use position: relative; in the parent element style (header in our case) and position: absolute; bottom: 0; in the child element style (div). This, however, unsticks the header from the top. Okay, but we can try adding margin-top: (height of the header); to the div stylesheet. This one is probably gonna work on your current resolution. Perhaps, on the another device the height of the header will not be the same, so second header (div) will be moved too much.
This is what I imagine while talking about this.
It is possible to solve like this, but the size will still change depending on the resolution of the device:
Finally, my question is - How to properly stick div element to the bottom of the header element?

