HTML CSS Reference/HTML Attributes Reference/framespacing

Материал из Web эксперт
Перейти к: навигация, поиск

"framespacing" Example

   <source lang="html4strict">

<HTML> <head><Title>Example For</Title></head> <frameset rows="*"

         cols="125,*" 
         frameborder="yes" 
         border="20px" 
         framespacing="5">
  <frame name="leftFrame" 
         scrolling="NO" 
         noresize 
         src="http://www.wbex.ru">
    <frameset rows="200,*" 
              border="15px" 
              framespacing="0">
       <frame name="topFrame" 
              noresize 
              scrolling="NO" 
              src="http://www.wbex.ru">
       <frame name="mainFrame" 
              src="http://www.wbex.ru">
    </frameset>

</frameset> </HTML>


     </source>
   
  


framespacing is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<frameset> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"framespacing" Syntax and Note

   <source lang="html4strict">

Note:

Create additional space in pixels between the frames.

Syntax:

<frameset framespacing="value"> . . . </frameset>


     </source>