
Border radius on an iFrame?
I tried using CSS3 PIE to do apply a border-radius to a DIV and and IFRAME. It works on the DIV, but not on the IFRAME.
Do I just need to add something extra?
Sample CodeCode:
<div style="border-radius:10px; background-color:red; behavior: url(PIE.htc);">Hello World</div>
<iframe src="about:blank" style="border-radius:10px; behavior: url(PIE.htc);"></iframe>