D
D
Denis Bukreev2016-11-13 00:49:57
css
Denis Bukreev, 2016-11-13 00:49:57

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

1 answer(s)
D
Denis Bukreev, 2016-11-13
@denisbookreev

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 question

Ask a Question

731 491 924 answers to any question