How to align iframe in HTML

This document is a quick introduction to the HTML5

center iframe

on Jan 01, 1970
<div class="iframe-container">
  <!--iframe link is the link to the jsfiddle-->
  <iframe src="https://jsfiddle.net/8z9s1t6x/2/"></iframe>
</div>

<style>
  .iframe-container {
		text-align:center;
  		width:100%;
  }
</style>

Add Comment

0

Center an iframe

on Jan 01, 1970
div, iframe {
    width: 100px;
    height: 50px;
    margin: 0 auto;
    background-color: #777;
}

iframe {
    display: block;
    border-style:none;
}

Add Comment

0

The

Html answers related to "iframe align center"

View All Html queries

Html queries related to "iframe align center"

Browse Other Code Languages

CodeProZone