Display IFrame without border using HTML

In this concept i will tell you, How to remove the border to the iframe. Iframe border looks very bad so we remove this border and scroll to fix the correct width and height for the iframe. Just use the frameBorder="0" scrolling="no" to iframe so you can remove the border and scroller.

iframe without border



Code for Iframe without border:

<html>
<head>
<title>Display IFrame without border using HTML</title>
</head>
<body>
<h1>Display IFrame without border using HTML</h1>
<iframe src="http://www.sanwebcorner.com" frameBorder="0" scrolling="no" seamless="seamless" width="500"   height="300">Browser not compatible.</iframe>
</body>
</html>

Post a Comment

0 Comments