Search
 
SCRIPT & CODE EXAMPLE
 

HTML

iframe 100 responsive

<style>
    .container-iframe { position: relative; width: 100%; overflow: hidden; padding-top: 56.25%; /* 16:9 Aspect Ratio */ }
    .responsive-iframe { position: absolute; top: 0; left: 0; bottom: 0; right: 0; width: 100%; height: 100%; border: none; }
</style>
<div class="container-iframe" data-widget="">
    <iframe src="index.html" class="responsive-iframe" frameborder="0"></iframe>
</div>
Comment

iframe responsive

<div class="row">	
  <div class="col-md-12 d-flex justify-content-center"> 
    <div class="video-iframe">
      <iframe class="video-responsive-iframe" src="<?= $blog_item['Blog']['video_url'] ?>" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
    </div>
  </div>
</div>

<style>
  
  .video-iframe {
	position: relative;
	width: 100%;
	overflow: hidden;
	padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }

  .video-responsive-iframe {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      width: 100%;
      height: 100%;
      border: none;
  }

  .d-flex {
  	display: flex;
  }
  
  .justify-content-center {
    justify-content: center;
  }
</style>
Comment

PREVIOUS NEXT
Code Example
Html :: how to make the picture in iframe full screen 
Html :: bootsrp 
Html :: how to align image with text in html 
Html :: how to make a scrollable list in html 
Html :: component in ejs 
Html :: how to set an svg favicon in html 
Html :: reading html file and writing response.write nodejs 
Html :: html <footer element 
Html :: usehistory is not exported from react-router-dom 
Html :: html basico 
Html :: disabled input fields vue 
Html :: how do you make a link in html5 
Html :: how to insert images into html 
Html :: how to write superscript in html 
Html :: remove arrow dropdown bootstrap 
Html :: html input size 
Html :: automatically refresh a web page 
Html :: how to make web page center 
Html :: input type for website in html 
Html :: html date min max 
Html :: add csrf token in vuejs 
Html :: tailwind css toggle 
Html :: phone fa 
Html :: publish html website 
Html :: placeholder wpf 
Html :: input with plus and minus buttons 
Html :: route link prop vue 
Html :: faq html css 
Html :: svelte comments 
Html :: a tag to open in new tab 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =