Advertisement
Miii7aka

Untitled

Sep 10th, 2024
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Ensure full width and height video background styling */
  2. body {
  3.     margin: 0;
  4.     overflow-x: hidden;
  5. }
  6.  
  7. section#video-background {
  8.     width: 100%;
  9.     height: 100vh;
  10.     position: relative;
  11.     display: flex;
  12.     justify-content: center;
  13.     align-items: center;
  14.     overflow: hidden;
  15. }
  16.  
  17. section#video-background video {
  18.     position: absolute;
  19.     top: 50%;
  20.     left: 50%;
  21.     transform: translate(-50%, -50%);
  22.     object-fit: cover;
  23.     width: 100%;
  24.     height: 100%;
  25. }
  26.  
  27. @media (min-aspect-ratio: 16/9) {
  28.     section#video-background video {
  29.         width: 100%;
  30.         height: auto;
  31.         max-height: 100vh;
  32.         object-fit: contain;
  33.     }
  34. }
  35.  
  36. @media (max-aspect-ratio: 16/9) {
  37.     section#video-background video {
  38.         height: 100%;
  39.         width: auto;
  40.         max-width: 100vw;
  41.         object-fit: contain;
  42.     }
  43. }
  44.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement