Iframe-Set height and width
The height and Width properties are used to specify the heights and widths of the IFRAME.
The default unit of a property value is pixels, but it can also be set in percentages (such as "80%").
Instance
<iframe src= "demo_iframe.html" width= "height=" ></iframe>
Iframe-Delete Border
The Frameborder property specifies whether the border around the IFrame is displayed.
Setting the property value to "0" allows you to remove the border:
Instance
<iframe src= "demo_iframe.html" frameborder= "0" ></iframe>
Use IFRAME as the target of the link
The IFRAME can be used as the target for the link.
The target property of the link must reference the Name property of the IFRAME:
<!DOCTYPE HTML><HTML><Body><iframesrc= "/example/html/demo_iframe.html"name= "Iframe_a"></iframe><P><ahref= "http://www.w3school.com.cn"Target= "Iframe_a">W3School.com.cn</a></P><P><b>Comments:</b>Because the target of the link matches the name of the IFRAME, the link opens in the IFRAME.</P></Body></HTML>
IFRAME Inline Frame