HTML CSS Reference/HTML Attributes Reference/noresize

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

"noresize" Example

   <source lang="html4strict">

<HTML> <head><Title>Example For noresize</Title></head> <frameset rows="50,*" frameborder="yes" border="20px" framespacing="5" cols="*">

  <frame id="topF" name="topFrame" scrolling="NO" noresize src="http://www.wbex.ru">
  <frameset cols="25%,*" border="15px" framespacing="0">
     <frame name="leftFrame" marginheight="15" noresize scrolling="NO" src="http://www.wbex.ru">
     <frame name="mainFrame" src="http://www.wbex.ru">
  </frameset>

</frameset> </HTML>


     </source>
   
  


noresize is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<frame> | +----------------+--------------------------------------------------------------+

     </source>
   
  


"noresize" Syntax and Note

   <source lang="html4strict">

Note:

This attribute sets the frame to be non-resizable.

Syntax:

<frame noresize>


     </source>