HTML/CSS/Frame Attributes/rows frameset

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

"rows" sets the row number and size in a frameset

   <source lang="html4strict">

<html> <head> </head> <frameset rows="50,*" frameborder="yes" border="20px" framespacing="5">

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

</frameset> <noframes> <body> noframes </body> </noframes> </html>


     </source>