blob: 151d5395dab9f15f93023ae68d5cdfd21f61e321 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<style>
.multicol {
width: 680px;
height: 500px;
columns: 2;
padding: 10px;
border: 1px solid green;
}
video {
margin: 10px;
width: 300px;
height: 200px;
border: 5px solid black;
background-color: silver;
}
.container {
height: 400px;
overflow: hidden;
border: 1px solid gray;
}
</style>
</head>
<body>
<div class="multicol">
<div class="container">
<video></video>
</div>
<div class="container">
<video></video>
</div>
</div>
</body>
</html>