HTML/CSS/IE Firefox/ moz selection

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

::selection and ::-moz-selection

   <source lang="html4strict">

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html>

   <head>
       <style type="text/css">
           ::selection {
               backgroud: crimson;
               color: pink;
           }
           ::-moz-selection {
               background: crimson;   
               color: pink;
           }
       </style>
   </head>
   <body>

Some paragraph text.

Some more paragraph text.

Even more paragraph text.

   </body>

</html>

</source>