I have text under the video, I need the video to be included not only by clicking on it but also by clicking on the text. How to implement it? Here is the code:
css:
.video-box { width: 210px; background-color: #fff; margin: 0 20px 20px 0; border-radius: 5px; overflow: hidden; } .video-box p:hover { color: #5FA467; cursor: pointer; }
html:
<div class="video-box"> <iframe src="https://www.youtube.com/embed/GKSRyLdjsPA" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen> </iframe> <p>Some textSome textSome textSome textSome text</p> </div>