HTML CSS Reference/HTML Attributes Reference/unselectable

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

"unselectable" Example

   <source lang="html4strict">
   

<HTML> <head><Title>Example For</Title></head> <BODY>

selectable text.

unselected text

</BODY> </HTML>


     </source>
   
  


unselectable is applied to

   <source lang="html4strict">

+----------------+--------------------------------------------------------------+ | Applied_To |<a> <acronym> | | |<address> <applet> | | |<area> | | | |

| |
<body> |

| |<button> |

| |
|

| | <custom> | | |

| | | <dir> |

| |
|

| |

| | |<embed> <fieldset> | | | <form> | | |<frame> <frameset> |

| |<hn>
|

| | <iframe> | | |<img> <input type="button"> | | |<input type="checkbox"> <input type="file"> | | |<input type="hidden"> <inputtype="image"> | | |<input type="password"> <input type="radio"> | | |<input type="reset"> <input type="submit"> | | |<input type="text"> | | |<isindex> | | |<label> <legend> |

| |
  • <listing> | | |<marquee> <menu> | | |<nobr> <object> | | |

      | | |

                                                            |
      |                |                                                    |
      |                |                                                     |
      |                |<select>                                               |
      |                |                                                |
      |                |                                                 |
      |                |                                                  |
      |                |<tbody>                         
      |

      | |<textarea> <tfoot> | | |<thead> |

      | |
        | | | <xmp> | +----------------+--------------------------------------------------------------+ </source>

        "unselectable" Syntax and Note

        <source lang="html4strict"> Note:

        This attribute specifies whether or not an element can be selected. Possible values are on and off (the default).

        Syntax:

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


        </source>