Сообщение от Nanto
|
http://www.codenet.ru/webmast/css2/visuren.php#q24
пункт 3.
|
странно у меня не делает:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>float</title>
<style>
#layer {
background: #fd0; /* Цвет фона */
border: 1px solid black; /* Параметры рамки */
padding: 10px; /* Поля вокруг текста */
margin-right: 20px; /* Отступ справа */
}
</style>
</head>
<body>
<div id="layer" style="display: inline; float: left; width: 100px;">
Кликни на меня, чтобы узнать мой display и float!
</div>
<div>
Duis autem dolor in hendrerit in vulputate velit esse molestie consequat, vel
illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio
dignissim qui blandit praesent luptatum zzril delenit au gue duis dolore te
feugat nulla facilisi.
</div>
<script>
document.getElementById("layer").onclick = function () {
alert("display: " + this.style.display + ", float:" + this.style.float);
};
</script>
</body>
</html>
float это float, а display это display