Report this

What is the reason for this report?

iframe height same as browser

Posted on February 7, 2017

I am using <iframe src="https://example.com" width="100%" height="610"></iframe> i want to make the iframe height same as my browser, I don’t know how, i tried height="100%", doesn’t work either. Pls help me, i prefer using css over javascript, but if i have to i am happy to use javascript . thanks in advance.



This textbox defaults to using Markdown to format your answer.

You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!

These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.

@jasmineyuan2016

You should be able to use something such as:

<iframe src="https://example.com" style="border: 0; width: 100%; height: 100%"></iframe>

You could options stick this in a CSS file and simply reference a class.

.fullframe {
    border: 0;
    height: 100%;
    width: 100%;
}
<iframe src="https://example.com" class="fullframe"></iframe>

Of course, you’ll most likely still have a gap on each side of your browser window unless you’ve already set a default margin of 0 for body:

body {
    margin: 0;
}

The developer cloud

Scale up as you grow — whether you're running one virtual machine or ten thousand.

Get started for free

Sign up and get $200 in credit for your first 60 days with DigitalOcean.*

*This promotional offer applies to new accounts only.