Video that completes the entire screen

Asked

Viewed 38 times

0

I want to make my video complete the whole browser window,
I tried to put with width and height 100%, but it doesn’t work.
Only Width fits the screen but height does not.
Html code:

<!DOCTYPE html>
<html lang="pt-br">
<head>
    <meta charset="utf-8">
    <title>Teste</title>
    <style type="text/css">
        *{
            margin: 0;
            padding: 0;
        }
    </style>
</head>
<body>
    <video width="100%" height="100%" controls>
        <source src="meee.mp4" type="video/mp4">
    </video>
</body>
</html>
  • In mine is "fullscreen" clears the page cache

  • I already did, but vlw

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.