HTML/CSS/CSS Attributes and Javascript Style Properties/hasLayout — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
Admin (обсуждение | вклад) м (1 версия) |
(нет различий)
|
Текущая версия на 08:16, 26 мая 2010
"hasLayout" Example
<html>
<body>
<div align="left"
id="myDiv1"
style="width:50%; background-color:red"
onMouseOver="alert("hasLayout property value: "+this.currentStyle.hasLayout)">
div segment
</div>
<br>
<div align="left"
id="myDiv2"
style="background-color:aqua"
onMouseOver="alert("hasLayout property value: "+this.currentStyle.hasLayout)">
div element has no layout or positioning set.
</div>
</body>
</html>