Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Ensure full width and height video background styling */
- body {
- margin: 0;
- overflow-x: hidden;
- }
- section#video-background {
- width: 100%;
- height: 100vh;
- position: relative;
- display: flex;
- justify-content: center;
- align-items: center;
- overflow: hidden;
- }
- section#video-background video {
- position: absolute;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- object-fit: cover;
- width: 100%;
- height: 100%;
- }
- @media (min-aspect-ratio: 16/9) {
- section#video-background video {
- width: 100%;
- height: auto;
- max-height: 100vh;
- object-fit: contain;
- }
- }
- @media (max-aspect-ratio: 16/9) {
- section#video-background video {
- height: 100%;
- width: auto;
- max-width: 100vw;
- object-fit: contain;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement