I have never needed to use iframes before, but one of my clients has asked to be able to embed image galleries wherever they want within other pages.
My clients are not allowed to embed javascript or PHP script. they can only insert HTML and CSS. So the only solution seems to be iframes or objects. Since iframes have better security than objects, I have chosen to focus on that solution.
One issue I have run into is that I cannot seem to completely remove the iframe border: See below, where the left and top borders remain:
I have tried:
Using DocType HTML 4.01 in the iframe because HTML5 seems to lack support for some iframe css.
iframe {
frameborder:none;
border:none;
border-color:white;
frameborder:white;
Any suggestions?