3 Ways To Resize IFrames In HTML - WikiHow

Skip to ContentQuizzes
  • Home
  • Random
  • Browse Articles
  • Learn Something New
  • QuizzesHot
  • Forums
  • Courses
  • Happiness Hub
  • Play Games
  • This Or That Game
  • Train Your Brain
  • Explore More
  • Support wikiHow
  • About wikiHow
  • Log in / Sign up
Terms of Use wikiHow is where trusted research and expert knowledge come together. Learn why people trust wikiHow How to Resize iFrames in HTML PDF download Download Article Explore this Article methods 1 Using HTML 2 Using CSS 3 Using a Division Class Other Sections Questions & Answers Related Articles Expert Interview References Co-authored by Jessica Andzouana and Travis Boylls

Last Updated: August 28, 2024 Fact Checked

PDF download Download Article X

This article was co-authored by Jessica Andzouana and by wikiHow staff writer, Travis Boylls. Jessica Andzouana is a Software Engineer based in the San Francisco Bay Area. With over five years of professional experience in front-end development, digital art, and design, she is passionate about emerging technologies such as blockchain and AI. Her background as both a programmer and artist, paired with a highly design-conscious mindset, provides her a fresh perspective and unique skill set to produce creative solutions in her field. She works at Alcacruz as a Software Engineer, and received a dual BS/BA degree from Santa Clara in Computer Science and Studio Art. This article has been fact-checked, ensuring the accuracy of any cited facts and confirming the authority of its sources. This article has been viewed 168,417 times.

iFrames let you embed external content, such as YouTube videos, advertisements, and content from other sites into your own web page. You can easily resize iFrames using HTML and/or CSS, and even make them resizable so they'll adjust automatically based on the user's screen size. This wikiHow article will show you how to change the size of an iFrame using HTML and CSS.

Resizing iFrames Using HTML

Find the iFrame element in your HTML file, then look for the "width=" attribute. After the "=", enter the size in pixels you want the iFrame to be.[1] For example, an attribute of "width=500px" will size it to 500 pixels.

Steps

Method 1 Method 1 of 3:

Using HTML

PDF download Download Article
  1. Step 1 Open up your HTML file. 1 Open up your HTML file. HTML files have a the file extension ".html" or ".htm" after the file name. You can edit an HTML file using an text editor, such as Notepad, or TextEdit. You can also use an HTML editor such as Adobe Dreamweaver, Codepen, or HTML Online.
    • To open an HTML file in the text editor or code editor of your choice, right-click the HTML file. Then place the mouse cursor over Open with. Click the program or application you want to use to edit the HTML file.
  2. Step 2 Look for the iFrame element. 2 Look for the iFrame element. iFrames are usually found below the "<body>" section of the HTML document. Look for the tag "<iframe src=" followed by the URL of the content that is contained within the iFrame in quotations. Advertisement
  3. Step 3 Edit the width attribute. 3 Edit the width attribute. You should see the attribute "width=" after the URL in the iframe tag. Edit the width in pixels in quotations (" ") after the "width=" attribute. For example, if you want the width to be 300 pixels, you would enter "width="300px"" after the URL in the tag. You can enter the width attribute anywhere after the URL and before the closing bracket (>).
    • Alternatively, if you want the iframe to adjust automatically based on the width of the user's screen or web browser, you enter a percentage instead of a fixed width. For example, if you want the iframe to use up 90% of the width, you would add the attribute "width="90%"."
    • If you do not see a "width=" attribute in the iframe tag, you can add it to the tag. It is also possible that the size of the iframe may be determined by the CSS code instead of the HTML tag.
  4. Step 4 Edit the height attribute. 4 Edit the height attribute. You should see the "height=" in the iframe tag. Edit the width in pixels in quotations (" ") after the "height=" attribute. For example, if you want the height to be 200 pixels, you would enter "height="200px"" as the height attribute. You can enter the height attribute anywhere after the URL and before the closing bracket (">").[2]
    • Alternatively, if you want the iframe to automatically adjust it size based on the space available, you can enter a percentage instead of a fixed height. For example, if you want the iframe to use 90% of the available space, you would enter "height="90%"" as the attribute. You can also use the attribute "height="auto"" to adjust the height automatically relative to the width.[3]
    • If you do not see a "height=" attribute in the iFrame tag, you can add it to the iframe tag. It is also possible that the size of the iFrame may be determined by the CSS code instead of the HTML tag.
    • Additionally, if you need your iframe to be able to scroll, you can add "scroll="true"" after height attribute before the closing bracket.
  5. Step 5 Ensure there is a closing tag. 5 Ensure there is a closing tag. Immediately after the iframe tag with all the attributes, there should be a closing tag.[4] The closing tag is simply </iframe>. Your iframe HTML code should look something like the following: <iframe src="iframe_contents.html" width="300px" height="200px" scroll="true"></iframe>
  6. Step 6 Save the HTML file. 6 Save the HTML file. When you are finished editing your HTML file, you can typically save the file by clicking File in the menu bar at the top, followed by Save.
  7. Step 7 Render the HTML. 7 Render the HTML. Rendering the HTML file allows you to see what it looks like and make sure you got the width and height just right. You can render the HTML file in any web browser of your choice. You can double-click the HTML file to open it in your default web browser. Alternatively, you can right-click the file, hover over Open with and select a web browser to open the file in.
  8. Advertisement
Method 2 Method 2 of 3:

Using CSS

PDF download Download Article
  1. Step 1 Open the HTML or CSS file. 1 Open the HTML or CSS file. CSS can be embedded within an HTML file, or it can be a separate CSS (.css) document linked within the HTML file. You can usually find the CSS portion of an HTML document below the "<style>" tag. It is usually in the "<head>" section of the HTML document. There you will find the CSS code or a link to the external CSS document.
    • If there is a separate CSS document linked within your HTML code, you can find the CSS document in the tag that resembles "<link rel="stylesheet" href="css_document.css">." It is usually found within the "<head>" section.
  2. Step 2 Locate the iframe element. 2 Locate the iframe element. In CSS, the iframe element tag looks like "iframe {". Locate the iframe element within the CSS code. All the attributes are listed below the CSS element tag.
    • Alternatively, the size of an iframe can be controlled by a division class. If that is the case, you can find the name of the division class next to the tag "<div id=" in the HTML code. Then you can locate the division class name in the CSS code and edit the attributes below the division class name.
  3. Step 3 Edit the width attribute. 3 Edit the width attribute. Enter the width of the iframe in pixels after the "width:" attribute in the list of attributes below the iframe element. Then place a semicolon (";") after the attribute.[5] For example, if you want the iframe to be 300 pixels, the width attribute would be "width: 300px;"
    • Alternatively, if you want the width of the iframe to adjust automatically based on the size of the user's screen or web browser window, you can enter a percentage instead of a fixed size. For example, if you enter the attribute "width: 100%;", this will tell the iframe to use 100% of the horizontal space available.
    • If there is no width attribute, go ahead and add one.
    • xz
  4. Step 4 Edit the height attribute. 4 Edit the height attribute. Enter the height of the iframe in pixels after the "height:" attribute in the list of attributes below the iframe element. Then place a semicolon (";")after the attribute. For example, if you want the iframe to be 200 pixels high, the height attribute would be "height: 200px;"
    • Alternatively, if you want the height of the iframe to adjust automatically based on the size of the user's screen or web browser window, you can enter a percentage instead of a fixed size. For example, if you enter the attribute "height: 100%;", this will tell the iframe to use 100% of the vertical space available. You can also enter "height: auto;" to automatically adjust the height relative to the width.
    • If there is no height attribute, go ahead and add one.
    • Additionally, if you want the iframe to be able to scroll, you can add the attribute "overflow: auto;" to add a scroll bar when necessary.
  5. Step 5 Ensure there is a closing tag. 5 Ensure there is a closing tag. When you have entered all the attributes to the iframe element that you want, be sure to close the iframe element by placing a "}" at the bottom of the list. The iframe attribute properties will be applied to all iframes in your HTML code.[6] Your CSS iframe element should look something like the following: iframe { width: 300px; height: 200px; overflow: auto; }
  6. Step 6 Add an iframe to your HTML document. 6 Add an iframe to your HTML document. If there is not already an iframe tag in your HTML document, you can add one. It will go in the "<body>" section of your HTML You do not need to add "height" or "width" attributes to the HTML tag. Enter the following code to your HTML document to add an iframe. Replace '[content_url]" with the URL for the content goes inside the iframe:
    • <iframe src="[content_url]"></iframe>
  7. Step 7 Save the HTML file. 7 Save the HTML file. When you are finished editing your HTML file, you can typically save the file by clicking File in the menu bar at the top, followed by Save.
  8. Step 8 Render the HTML. 8 Render the HTML. Rendering the HTML file allows you to see what it looks like and make sure you got the width and height just right. You can render the HTML file in any web browser of your choice. You can double-click the HTML file to open it in your default web browser. Alternatively, you can right-click the file, hover over Open with and select a web browser to open the file in.
  9. Advertisement
Method 3 Method 3 of 3:

Using a Division Class

PDF download Download Article
  1. Step 1 Open the HTML and/or CSS file. 1 Open the HTML and/or CSS file. In addition to using individual CSS attributes to control the size of all iframes in your HTML document, you can also use a division class to control the size of an iframe or other content. Division classes act as a container that holds HTML code that is separate from the rest of the document. You can have multiple division classes, and they can each be styled using CSS.
  2. Step 2 Navigate to the CSS section. 2 Navigate to the CSS section. CSS can be embedded within an HTML file, or it can be a separate CSS (.css) document linked within the HTML file. You can usually find the CSS portion of an HTML document below the "<style>" tag. It is usually below the "<head>" section of the HTML file. There you will find the CSS code or a link to the CSS document.
    • If there is a separate CSS file link to the HTML code, you can find the CSS file in the tag that resembles "<link rel="stylesheet" href="css_file.css">" below the "<head>" section of the document.
  3. Step 3 Create a new division class ID. 3 Create a new division class ID. To create a new division class, type a period (".") followed by the division class name. Then add a "{" at the end to open the division class element. You can name the division class anything you want, but it cannot contain any spaces.
    • For example .iframe_container {.
  4. Step 4 Add a width attribute. 4 Add a width attribute. To add a width attribute, type "width:" followed by the width in pixels below the division class element. Then add a semicolon at the end (i.e. "width: 300px;").
    • Alternatively, if you want the width of the division class to adjust automatically based on the size of the user's screen or web browser window, you can enter a percentage instead of a fixed size. For example, if you enter the attribute "width: 100%;", this will tell the division class to use 100% of the horizontal space available.
  5. Step 5 Add a height attribute. 5 Add a height attribute. To add a width attribute, type "height:" followed by the width in pixels below the division class attribute. Then add a semicolon at the end (i.e. "width: 200px;").
    • Alternatively, if you want the height of the division class to adjust automatically based on the size of the user's screen or web browser window, you can enter a percentage instead of a fixed size. For example, if you enter the attribute "height: 100%;", this will tell the division class to use 100% of the vertical space available.
    • Additionally, If you want the division class to be able to scroll, you can add the attribute "overflow: auto;" to add a scroll bar when necessary.
  6. Step 6 Close the division class. 6 Close the division class. Once you are finished adding all the CSS attributes you want to add to the division class, add a "}" at the bottom of the list of attributes to close out the division class element in your CSS.
  7. Step 7 Add the division class container to your HTML file. 7 Add the division class container to your HTML file. Go to where you want to add an iframe in your HTML document. Then type "<div id="" followed by the division class id in quotations. Then add a closing bracket (">") at the end of the tag. (i.e: "<div id="iframe_container">).
  8. Step 8 Add the iframe tag below the division class tag. 8 Add the iframe tag below the division class tag. You don't need to add any height or width attributes to the iframe HTML tag. The division class will determine the height and width of the iframe. Enter the following code to your HTML document to add an iframe. Replace '[content_url]" with the URL for the content goes inside the iframe:
    • <iframe src="[content_url]"></iframe>
  9. Step 9 Close the division class in your HTML document. 9 Close the division class in your HTML document. To close the HTML type </div> after the iframe tag and any other contents you want to go inside the iframe.[7] Your HTML document with the CSS should look something like the following: [8] <HTML> <head> <style> .iframe_container { width: 300px; height: 200px; overflow: auto; } </style> </head> <body> <div id="iframe_container> <iframe src="[content_URL]"></iframe> </div> </body> </html>
  10. Step 10 Save the HTML file. 10 Save the HTML file. When you are finished editing your HTML file, you can typically save the file by clicking File in the menu bar at the top, followed by Save.
  11. Step 11 Render the HTML. 11 Render the HTML. Rendering the HTML file allows you to see what it looks like and make sure you got the width and height just right. You can render the HTML file in any web browser of your choice. You can double-click the HTML file to open it in your default web browser. Alternatively, you can right-click the file, hover over Open with and select a web browser to open the file in.
  12. Advertisement

Community Q&A

Search Add New Question
  • Question What is HTML coding for books? James Paradox James Paradox Community Answer You can't code books. HTML is a programming language designed to be used on computers. Thanks! We're glad this was helpful. Thank you for your feedback. If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow Yes No Not Helpful 23 Helpful 8
  • Question How do I enlarge the window where I have embedded a Google doc into my website? Community Answer Community Answer You can do this by giving it padding and margin (if you are using elementor*). And if you are using any other service, like Classic Editor, then you can use a separator. Thanks! We're glad this was helpful. Thank you for your feedback. If wikiHow has helped you, please consider a small contribution to support us in helping more readers like you. We’re committed to providing the world with free how-to resources, and even $1 helps us in our mission. Support wikiHow Yes No Not Helpful 0 Helpful 0
Ask a Question 200 characters left Include your email address to get a message when this question is answered. Submit Advertisement

Tips

Submit a Tip All tip submissions are carefully reviewed before being published Name Please provide your name and last initial Submit Thanks for submitting a tip for review!

You Might Also Like

Make a HTML Link ButtonHow toMake a HTML Link Button Insert Images with HTMLHow toInsert Images with HTML Add a Link to a Picture4 Ways to Add a Link to a Picture Run a HTML File in Visual Studio CodeHow toRun a HTML File in Visual Studio Code Insert Spaces in HTMLHow toInsert Spaces in HTML Create a Simple Web Page with HTMLHow toCreate a Simple Web Page with HTML Write HTML CodeHow toWrite HTML Code Run a HTML FileHow toRun a HTML File Change the Button Color in HTMLHow toChange the Button Color in HTML Set a Background Image in HTMLAdd a Background Image to a Website: Step-by-Step Tutorial Open HTM FilesHow toOpen HTM Files Get the Hex Code of a Color on Your Computer ScreenSimple Ways to Find the Hex Code of Any Color on Your Computer Make a Birthday Card with HTML and CSSHow toMake a Birthday Card with HTML and CSS Copy Source CodeHow to Copy HTML Source Code on Your Computer, iPhone, or Android Advertisement

Expert Interview

Thanks for reading our article! If you’d like to learn more about dealing with html, check out our in-depth interview with Jessica Andzouana.

References

  1. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
  2. https://www.w3schools.com/html/html_iframe.asp
  3. https://imagekit.io/blog/how-to-resize-image-in-html/
  4. https://www.w3schools.com/tags/tag_iframe.ASP
  5. https://www.w3schools.com/tags/tag_iframe.ASP
  6. https://www.w3schools.com/tags/tag_iframe.ASP
  7. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/iframe
  8. https://www.w3schools.com/howto/howto_css_responsive_iframes.asp

About This Article

Jessica Andzouana Co-authored by: Jessica Andzouana Software Engineer This article was co-authored by Jessica Andzouana and by wikiHow staff writer, Travis Boylls. Jessica Andzouana is a Software Engineer based in the San Francisco Bay Area. With over five years of professional experience in front-end development, digital art, and design, she is passionate about emerging technologies such as blockchain and AI. Her background as both a programmer and artist, paired with a highly design-conscious mindset, provides her a fresh perspective and unique skill set to produce creative solutions in her field. She works at Alcacruz as a Software Engineer, and received a dual BS/BA degree from Santa Clara in Computer Science and Studio Art. This article has been viewed 168,417 times. How helpful is this? Co-authors: 33 Updated: August 28, 2024 Views: 168,417 Categories: HTML
  • Print
  • Send fan mail to authors
Thanks to all authors for creating a page that has been read 168,417 times.

Is this article up to date?

Yes No Advertisement Cookies make wikiHow better. By continuing to use our site, you agree to our cookie policy. Jessica Andzouana Co-authored by: Jessica Andzouana Software Engineer Click a star to vote % of people told us that this article helped them. Co-authors: 33 Updated: August 28, 2024 Views: 168,417

Quizzes

Do I Have a Dirty Mind QuizDo I Have a Dirty Mind QuizTake QuizAm I a Good Kisser QuizAm I a Good Kisser QuizTake QuizRizz Game: Test Your RizzRizz Game: Test Your RizzTake QuizWhat's Your Red Flag QuizWhat's Your Red Flag QuizTake QuizAm I Smart QuizAm I Smart QuizTake QuizHow Insecure Am I QuizHow Insecure Am I QuizTake Quiz

You Might Also Like

Make a HTML Link ButtonHow toMake a HTML Link ButtonInsert Images with HTMLHow toInsert Images with HTMLAdd a Link to a Picture4 Ways to Add a Link to a PictureRun a HTML File in Visual Studio CodeHow toRun a HTML File in Visual Studio Code

Featured Articles

Feng Shui Your BedroomHow toFeng Shui Your BedroomAm I In Love QuizAm I In Love QuizHow & Where to Apply Perfume (Plus, Common Mistakes to Avoid)How & Where to Apply Perfume (Plus, Common Mistakes to Avoid)Know if You Are Ready for a RelationshipHow toKnow if You Are Ready for a RelationshipDevelop a Thick SkinHow toDevelop a Thick SkinCelebrate HanukkahHow toCelebrate Hanukkah

Trending Articles

 Wrap a Box Like a ProHow to Wrap a Box Like a ProCelebrate HanukkahHow toCelebrate HanukkahDo Simple and Cute HairstylesHow toDo Simple and Cute HairstylesGet Into the Spirit of Christmas when You Don't Feel It Any MoreHow toGet Into the Spirit of Christmas when You Don't Feel It Any MoreWhat Does the Thumbs Up 👍 Emoji Mean & Why Is It So Controversial?What Does the Thumbs Up 👍 Emoji Mean & Why Is It So Controversial? Make Your Girlfriend Fall For You Again (And Keep Her for Good!)How to Make Your Girlfriend Fall For You Again (And Keep Her for Good!)

Featured Articles

Tell if a Diamond is RealHow toTell if a Diamond is RealWhich Hogwarts House Do I Belong In QuizWhich Hogwarts House Do I Belong In QuizWhat to Do When You Get a Gift You Don't LikeWhat to Do When You Get a Gift You Don't LikeWhat Kind of Reality Check Do I Need QuizWhat Kind of Reality Check Do I Need QuizMake a MenorahHow toMake a MenorahGet to Sleep on Christmas EveHow toGet to Sleep on Christmas Eve

Featured Articles

21 Ways to Feel More Comfortable in Your Own Skin21 Ways to Feel More Comfortable in Your Own SkinCelebrate ChristmasHow toCelebrate ChristmasMake ShawarmaHow toMake ShawarmaMake a Chicken BurgerHow toMake a Chicken Burger Tell if a Guy Has a Crush on YouHow to Tell if a Guy Has a Crush on You Wrap a Present Like a ProHow to Wrap a Present Like a Pro

Watch Articles

Thicken SyrupHow toThicken SyrupStraighten Your HairHow toStraighten Your HairClean Metal JewelryHow toClean Metal JewelrySeason ChickenHow toSeason Chicken3 Unique Ways to Re-Invent the Neckline of a Shirt3 Unique Ways to Re-Invent the Neckline of a ShirtMoisturize Your Face NaturallyHow toMoisturize Your Face Naturally

Trending Articles

Tell When a Guy is No Longer Interested in YouHow toTell When a Guy is No Longer Interested in YouCelebrate KwanzaaHow toCelebrate KwanzaaWhat Does “Much Appreciated” Mean? Plus, Alternatives for Business EmailsWhat Does “Much Appreciated” Mean? Plus, Alternatives for Business Emails Trim, Slice, & Cut the Perfect BrisketHow to Trim, Slice, & Cut the Perfect BrisketFeel More AttractiveHow toFeel More AttractiveMake Your Mascara Look GreatHow toMake Your Mascara Look Great

Quizzes

What Disney Princess Am I QuizWhat Disney Princess Am I QuizTake QuizDo I Have a Phobia QuizDo I Have a Phobia QuizTake QuizGuess My Age QuizGuess My Age QuizTake QuizAm I a Genius QuizAm I a Genius QuizTake QuizDepression TestDepression TestTake QuizWhat Human Emotion Am I QuizWhat Human Emotion Am I QuizTake Quiz wikiHow
  • Categories
  • Computers and Electronics
  • Internet
  • Website and Blog Creation
  • Markup Languages
  • HTML
wikiHow Newsletter You're all set! Helpful how-tos delivered toyour inbox every week! Sign me up! By signing up you are agreeing to receive emails according to our privacy policy.
  • Home
  • About wikiHow
  • Experts
  • Jobs
  • Contact Us
  • Site Map
  • Terms of Use
  • Privacy Policy
  • Do Not Sell or Share My Info
  • Not Selling Info
  • Contribute

Follow Us

×

wikiHow Tech Help Pro:

Level up your tech skills and stay ahead of the curve

Let's go! X --1105

Từ khóa » Html Iframe Adjust Height To Content