I have a simple homepage design with a header, footer, left and right column. I use bootstrap 4 for this. In the right column I have a video with a certain aspect ratio. Unfortunately the video doesn't have the same width as one of the predefined columns settings.
I am getting complaints when people resize their browser from an original 2560x1440
So i am testing with a bit of a hacky solution, like:
@media (min-width : 2000px) and ( max-height: 1200px ) {
#show-one-column-layout, .show-one-column-layout {
display:block;
}
.show-fullscreen-layout {
display:none;
}
}
I just put the layout in a big container, but now I am thinking to trigger this when the browser has a smaller aspect ration then 1.6-1.7
but not with a min-width of 2000px???
[EDIT] I am trying with @media (min-aspect-ratio: 8/5) {
but I am missing something