iframe没有调整大小

时间:2017-01-24 05:33:06

标签: html css iframe media-queries

所以我有这个iframe

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

我希望它在小型设备上变得更小,所以我添加了

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

但它不起作用,原因是什么? 问候, herrsocke

1 个答案:

答案 0 :(得分:1)

试试这个:

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

       max-height: 150px !important;
       } 
        }