I had the same problem on my website blog that I am developing, I added the height for the iframe because Firefox was missing the height from the height label in the iframe, the solution either adds height using the style tag, but if its a responsive website uses media css for height of iframe tags. An example may explain this better.
If you use a fixed height for an iframe, try adding a style tag in the iframe, as in
style="height:374px"
If a responsive site adds an iframe to the media request in css - for example:
@media screen and (min-width: 100px) and (max-width:768px) { .video iframe {height:200px} }
etc.
It worked for me, I hope this helps others as well.
Thanks!
source share