How to remove the iframe border
The following way ensures borders from iframes will be gone.
Most HTML elements work with the standard border attribute. unfortunatly iframes have 3D borders which can't be removed with the border attribute.
Your iframe will probably look something like this :
<iframe></iframe>We need to add two attributes called frameborder and frameborder :
<iframe frameborder="0" frameborder="no"></iframe>
Posted by James on 2009-08-29 in the category " html "
