其他分享
首页 > 其他分享> > Html 视频分屏显示[转]

Html 视频分屏显示[转]

作者:互联网

Html 视频分屏显示[转]

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .video-window {
            float: left;
            margin-left: 1%;
            margin-bottom: 1%;
            width: 48%;
            height: 0;
            position: relative;
            padding-bottom: 25%;
            background-color: #000;
        }
    </style>
</head>

<body>
    <div class="video-show">
        <div class="video-window" alt="1">
        </div>
        <div class="video-window" alt="2">
        </div>
        <div class="video-window" alt="3">
        </div>
        <div class="video-window" alt="4">
        </div>
    </div>

</body>

</html>

标签:视频,bottom,Html,1%,margin,分屏
来源: https://blog.csdn.net/baidu_41388533/article/details/120749164