With the introduction of new HTML5 iframe attributes, there are now more options available. One such attribute is the seamless
attribute, which has the ability to:
Create an iframe that appears to be seamlessly integrated into the containing document.
<iframe src="demo_iframe.htm" seamless></iframe>
Unfortunately, no browsers currently support this feature. Is there a way to achieve the same 'seamless' effect using CSS instead?
If CSS is not a viable option, I would greatly appreciate any suggestions for alternatives to the iframe tag. Perhaps something involving JavaScript or jQuery (PHP is not an option for me at the moment).