responsive iframe center for ipad

166 Views Asked by At

hello i have problem for iframe is not responsive for ipad this my code css for iframe

iframe {

float:center;
width: 100%;
vertical-align: middle;

max-width: 100%;



}

enter link description here

1

There are 1 best solutions below

0
On BEST ANSWER

I didn't check it on iPad, but float doesn't have center.

Try this code

css

iframe{
    margin-left:auto;
    margin-right:auto;
    display:block;
    float:none;
    max-width: 150px /* if you use 100% it will fill whole screen */
}