S O U R C E C O D E
<style>
.video-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 15px;
max-width: 1200px;
margin: 0 auto;
}
.video-box {
position: relative;
width: 100%;
overflow: hidden;
}
/* iframe videos (YouTube) */
.video-box .iframe-wrap {
position: relative;
width: 100%;
padding-bottom: 56.25%;
}
.video-box iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: 0;
}
/* Blogger uploaded videos (object) */
.video-box .separator {
width: 100% !important;
}
.video-box object {
width: 100% !important;
height: auto !important;
}
/* Mobile responsive */
@media (max-width: 768px) {
.video-grid {
grid-template-columns: 1fr;
}
}
</style>
<div class="video-grid">
<!--ROW-1 COL-1 (video1)-->
<div class="video-box">
<div class="iframe-wrap">
<iframe allowfullscreen="" src="https://www.youtube.com/embed/itYSuZ-Z3ac"></iframe>
</div>
</div>
<!--ROW-1 COL-2 (video3 v2) FIXED-->
<div class="video-box">
<div class="separator" style="clear: both; text-align: center;">
<object aria-label="Upload video" class="BLOG_video_class" contentid="69d9d0b4d20250a3"
height="498" id="BLOG_video-69d9d0b4d20250a3" width="600">
</object>
</div>
</div>
<!--ROW-2 COL-1 (video2 v2) FIXED-->
<div class="video-box">
<div class="separator" style="clear: both; text-align: center;">
<object aria-label="Upload video" class="BLOG_video_class" contentid="dedb38882969841f"
height="498" id="BLOG_video-dedb38882969841f" width="600">
</object>
</div>
</div>
<!--ROW-2 COL-2 (video4)-->
<div class="video-box">
<div class="iframe-wrap">
<iframe allowfullscreen="" src="https://www.youtube.com/embed/QjcaT2lEg4k"></iframe>
</div>
</div>
</div>
Comments
Post a Comment