[Solved] Issue with IFRAME? [closed]


Do you mean you want to get rid of the frames? Simple solution is to use `style´:

<iframe src="https://stackoverflow.com/questions/11109229/..." style="border: 0px"></iframe>

If your doctype is HTML5, you can also embed your iframe content seamlessly into the DOM (=”transparent” iframe import):

<iframe src="https://stackoverflow.com/questions/11109229/..." seamless="seamless" style="border: 0px;"></iframe> 

I wouldn’t expect all browsers to support that yet though.

12

solved Issue with IFRAME? [closed]