HTML/CSS/CSS Attributes and Javascript Style Properties/text overflow

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

"text-overflow" Example

   <source lang="html4strict">
   

<html> <body>

  <nobr>www.wbex.ru<nobr>

<input type="button"

      value="text-overflow = "ellipsis"" 
      onclick="myT.style.textOverflow = "ellipsis"">
      

<input type="button"

      value="text-overflow = "clip"" 
      onclick="myT.style.textOverflow = "clip"">

</body> </html>


     </source>