How to achieve switching between 4 videos, so that when you click on one of them the main video changes?
.main_video iframe{ width:100%; } .video_item iframe{ width:100%; height:100px; } .row{ display: flex; flex-direction: row; } .video_item{ padding:0 20px; } <div class="main_video"> <iframe src="https://www.youtube.com/embed/_pwdixReIZ4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> </div> <div class="row"> <div class="video_item"> <iframe src="https://www.youtube.com/embed/_pwdixReIZ4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> </div> <div class="video_item"> <iframe src="https://www.youtube.com/embed/_pwdixReIZ4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> </div> <div class="video_item"> <iframe src="https://www.youtube.com/embed/_pwdixReIZ4" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe> </div> </div>