모바일 페이지 유튜브 링크 질문
본문
<iframe width="50%" height="210" src="https://www.youtube.com/embed/V1s0ZuWVed4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<iframe width="50%" height="210" src="https://www.youtube.com/embed/1vAdXinH5ck" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
소스를 입력하면 유튜브 동영상이 위아래로 나옵니다.
세로로 나오지 않고 가로로 나오게
이렇게 나오게 어떻게 소스 수정을 해야 하나요?
고수님들 답변 부탁드립니다.
감사합니다.
답변 3
<iframe width="50%" height="210" src="https://www.youtube.com/embed/V1s0ZuWVed4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style="display:inline-block;"></iframe><iframe width="50%" height="210" src="https://www.youtube.com/embed/1vAdXinH5ck" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style="display:inline-block;"></iframe>
이런식으로 해도되고. .
<iframe width="50%" height="210" src="https://www.youtube.com/embed/V1s0ZuWVed4" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style="float:left;"></iframe><iframe width="50%" height="210" src="https://www.youtube.com/embed/1vAdXinH5ck" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen style="float:left;"></iframe>
<style>
.you:after{clear:both;content:"";display:block; }
.you iframe{float:left; width:50%; }
</style>
이런식으로 float:left 로 해도 됩니다.
<iframe width="50%" height="210" style="float:left"