Notice
Recent Posts
Recent Comments
Link
«   2025/05   »
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
Archives
Today
Total
관리 메뉴

코딩

반응형으로 동영상 삽입하는방법 본문

HTML+CSS

반응형으로 동영상 삽입하는방법

큐p큐p 2019. 11. 18. 15:02

HTML

<div class="video">

   <iframe width="640" height="360"

   src="동영상 주소" frameborder="0"

   allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>

   </iframe>

 </div>

CSS

.video {

   position: relative;

   padding-bottom: 56.25%; (wide화면 16:9=56.25 표준비율 4:3 =75)

   height: 0;

   overflow: hidden;

   margin-bottom: 4em;

}

.video iframe,.video object,.video embed {

   position: absolute;

   top: 0;

   left: 0;

   width: 100%

   height: 100%

}

Comments