SQL PHP HTML JavaScript articles and free code
 
 

Frame Borders

We can make the frame borders invisible by using frameborder attribute of <frame> tag.













Example:
       <Frameset rows="50%,50%">               
            <Frame src="frame1src.html" frameborder="0">
            <Frame src="frame2src.html" frameborder="0">
     </Frameset>
            We can also make the frameset borders invisible by using border attribute of <frameset> tag.
Example:
       <Frameset rows="50%,50%" border="0">               
            <Frame src="frame1src.html" frameborder="0">
            <Frame src="frame2src.html" frameborder="0">
     </Frameset>
Note: frameborder attribute can also be specified with in the <frameset> tag to avoid mentioning for every frame within a frameset.

Example:
       <Frameset rows="50%,50%" border="0" frameborder="0">           -- This makes border of all frames with in the frameset invisible.     
            <Frame src="frame1src.html">
            <Frame src="frame2src.html">
     </Frameset>

Discuss this tutorial at forum

List of HTML Tutorials

Frames in HTML pages
Frames in HTML  | Advantages of Frames  | Disadvantages of Frames  | Nested Framesets  | Frame Tag  | Frame Borders  | Resizable Frames  | Frames with Scrollbars  | NoFrames  | Inline Frame

 

Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.

Scripts
PHP
JavaScript
List of HTML Tutorial
HTML Tags
Color Chart
HTML Calendar
Tags on web page
Web Design
Subscribe
Submit your email address and receive article and product notifications. Your email is safe with us.