Answer the question
In order to leave comments, you need to log in
How to center background video?
So it goes.
There is a video in the background, embedded through <video>
with absolute positioning and z-index setting.
But, when the page width is smaller than the video width, the video clip is cut off on the right edge without being centered.
How to center?
Answer the question
In order to leave comments, you need to log in
We <video>
put the following styles:
min-width: 100vw;
min-height: 100vh;
position: absolute; // либо fixed
top: 50%;
left: 50%;
transform: translateX(-50%) translateY(-50%);
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question