HTML CSS Reference/HTML Attributes Reference/scrolling

Материал из Web эксперт
Версия от 11:20, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

"scrolling" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For scrolling</Title></head> <BODY> <iframe scrolling="yes"

       name="myFrame" 
       src="http://www.wbex.ru" 
       style="width:30%"></iframe>

</BODY> </HTML>


     </source>
   
  


scrolling is applied to

   <source lang="html4strict">

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

     </source>
   
  


"scrolling" Syntax and Note

   <source lang="html4strict">

Note:

This attribute sets whether a frame should have a scroll bar or not. Possible values are yes, no, and auto. Default value is auto.

Syntax:

<element scrolling="value"> . . . </element>


     </source>