vote up 7 vote down star
1

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 seemless, assuming the background colors are consistent. The target browser is IE6 only and unfortunately solutions for others will not help.

flag

7 Answers

vote up 11 vote down check

Add frameborder attribute.

So it would look like

<IFRAME src="myURL" width=300" height="300" frameBorder="0">Browser not compatible. </IFRAME>
link|flag
2  
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
vote up 5 vote down

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

You have to set the frame**B**order attribute with a capital B.

<iframe frameBorder="0" ></iframe>
link|flag
correct, in IE it must be capital B. – scunliffe Nov 8 '08 at 21:19
vote up 2 vote down

In addition to adding the frameborder attribut you might wan't 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>
link|flag
vote up 0 vote down

frameborder="0"

http://www.htmlcodetutorial.com/frames/_IFRAME_FRAMEBORDER.html

link|flag
vote up 0 vote down

Thanks a lot i was also looking for a solution to this. I tried using this in the CSS of iframe but sadly it did not work.

._my_frame{ border:none; }

link|flag
vote up 0 vote down

hi all i am using the same iframe but borber is displaying in IE 8 whats the problem is there any solution

link|flag
vote up 0 vote down

use the code man

link|flag

Your Answer

Get an OpenID
or

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