I am currently working on a webpage with a minimum width requirement of 1124px. This means that whenever the browser window is smaller than that, the content of the page needs to be scrolled horizontally instead of smoothly transitioning into a responsive layout.
I'm curious if it's possible to keep the header fixed vertically only. So, when the browser size is less than 1124px, the header will scroll horizontally along with the rest of the content, but still stay fixed at the top when scrolling vertically.
body {
min-width: 1124px;
}
header {
position: fixed;
}