Herrsocke
Herrsocke

Reputation: 262

Iframe does not resize

So i have this iframe

iframe {   
width: 39%;
height: 447px;
max-height: 447px;
}

I want it to become smaller on small devices so i added

@media only screen and (max-width:500px) { 
   iframe { 
   height: 150px !important; 
   max-height: 150px !important;
   } 
}

but it does not work, what is the reason for that? greetings, herrsocke

Upvotes: 0

Views: 49

Answers (1)

Anonymous
Anonymous

Reputation: 1990

try this:

 @media screen and (max-width:500px) { 
       iframe { 

       max-height: 150px !important;
       } 
        }

Upvotes: 1

Related Questions