Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How do I remove the border from an iframe embedded in my web app? An example of the iframe is:

<IFRAME src="myURL" width="300" height="300">Browser not compatible. </IFRAME>

I would like the transition from the content on my page to the contents of the iframe to be seamless, assuming the background colors are consistent. The target browser is IE6 only and unfortunately solutions for others will not help.

share|improve this question

10 Answers

up vote 429 down vote accepted

Add the frameBorder attribute (note the capital ‘B’).

So it would look like:

<iframe src="myURL" width="300" height="300" frameBorder="0">Browser not compatible.</iframe>
share|improve this answer
59  
please edit this answer to indicate that a CAPITAL B on Border is required to make this work in IE. – scunliffe Nov 8 '08 at 21:20
@scunliffe: There you go. :) – Mathias Bynens May 8 '10 at 9:13
jambo David.... nice solution – Awais Qarni Jul 6 '12 at 6:59
8  
Kinda depends on your doctype. If you're writing a HTML 4.01 document, then frameBorder='0' is the way to go. But if you're writing a HTML5 document, consider using attribute seamless='seamless' because in HTML5, attribute frameBorder is no longer supported. – Martin Andersson Oct 22 '12 at 16:16
4  
@MartinAndersson but the question was about a solution for IE6 – jalf Feb 6 at 9:43
show 2 more comments

After going mad trying to remove the border in IE7, I found that the frameBorder attribute is case sensitive.

You have to set the frameBorder attribute with a capital B.

<iframe frameBorder="0" ></iframe>
share|improve this answer
2  
correct, in IE it must be capital B. – scunliffe Nov 8 '08 at 21:19
2  
This is completely ridiculous! Good catch though. SO saved me many hours of trouble again :) – Alex Dec 10 '09 at 7:04
Too crazy... thanks! – Wayne Kao Feb 8 '10 at 8:55
it would be a lifesaver if were the correct answer, because it mentions the capital B. – KARASZI István Mar 30 '10 at 12:52

In addition to adding the frameBorder attribute you might want to consider setting the scrolling attribute to "no" to prevent scrollbars from appearing.

<iframe src="myURL" width="300" height="300" frameBorder="0" scrolling="no">Browser not compatible. </iframe > 
share|improve this answer

Using the "border" CSS attribute works as well:

<iframe src="test.html" style="width: 100%; height: 400px; border: 0"></iframe>
  • Note CSS border property does not achieve the desired results in IE6, 7 or 8.
share|improve this answer

for browser specific issues also add frameborder="0" hspace="0" vspace="0" marginheight="0" marginwidth="0" according to Dreamweaver

<iframe src="test.html" name="banner" width="300" marginwidth="0" height="300" marginheight="0" align="top" scrolling="No" frameborder="0" hspace="0" vspace="0">Browser not compatible. </iframe>

share|improve this answer

NOTE: frameborder attribute changes in F12 "debugger" will not be shown by IE6. Instead, add attribute in html code.

share|improve this answer
1  
Thanks for this comment: I was changing it via the "debugger" and was baffled as to why it didn't work! – Ann L. Sep 23 '11 at 16:51

frameBorder should equal "yes" or "no"

share|improve this answer
1  
"yes" / "no" only works in IE. For a cross browser result you need to use "1" or "0" respectively. Although in other browsers you can override the frameborder with CSS. – w3d Nov 10 '11 at 19:19

You can also do it with JavaScript this way. It will find any iframe elements and remove their borders in IE and other browsers (though you can just set a style of "border : none;" in non-IE browsers instead of using JavaScript). AND it will work even if used AFTER the iframe is generated and in place in the document (e.g. iframes that are added in plain HTML and not JavaScript)!

This appears to work because IE creates the border, not on the iframe element as you'd expect, but on the CONTENT of the iframe--after the iframe is created in the BOM. ($@&*#@!!! IE!!!)

Note: The IE part will only work (of course) if the parent window and iframe are from the SAME origin (same domain, port, protocol etc.). Otherwise the script will get "access denied" errors in the IE error console. If that happens, your only option is to set it before it is generated, as others have noted, or use the non-standard frameBorder="0" attribute. (or just let IE look fugly--my current favorite option ;) )

Took me MANY hours of working to the point of despair to figure this out...

Enjoy. :)

// =========================================================================
// Remove borders on iFrames

if (window.document.getElementsByTagName("iframe"))
   {
      var iFrameElements = window.document.getElementsByTagName("iframe");
      for (var i = 0; i < iFrameElements.length; i++)
         {
            iFrameElements[i].frameBorder="0";   //  For other browsers.
            iFrameElements[i].setAttribute("frameBorder", "0");   //  For other browsers (just a backup for the above).
            iFrameElements[i].contentWindow.document.body.style.border="none";   //  For IE.
         }
   }
share|improve this answer

I get the following results in testing:

  1. Using CSS "border" only works if you use a DOCTYPE.
  2. The "frameborder" attribute works fine in lower case with or without a DOCTYPE.

Tested with IE 6.0.2900.2180 on XP (SP2).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.