IFrame with no border
May 21, 08 by the programmerSo you want your IFRAME without borders a?
You probably tried border=”0″ and it did not work.
If you want to make an iframe without a border you have to set the following attribute
frameborder=”0″
That’s it.
Look at the attribute in the real iframe bellow
<iframe name=”frame_name” src=”http://minanov.com” width=”100%” height=”500” frameborder=”0″ ></iframe>
