HTML/CSS/CSS Attributes and Javascript Style Properties/bottom — различия между версиями

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

Текущая версия на 08:15, 26 мая 2010

"bottom" Example

    
<html><head>
<style>
#secL { 
   position:absolute; 
}
.style1 { 
   bottom:100px!important; 
}
.style2 { 
   bottom:auto!important; 
}
</style>
</head>
<body>
Click the following image to see the style change.
<img src="http://www.wbex.ru/style/logo.png" 
     width="79" 
     height="99"
     onClick="this.className="style2";return false"
     onMouseOver="this.className="style1"" 
     style="position:absolute; 
            cursor:hand; 
            z-index=5">
</body>
</html>