CSS中的position

      html代码:

<html>
<head>
<link rel="stylesheet" type="text/css" href="test.css" />
</head>

<body>
<div style="position:absolute; left:100px; top:100px;">
	<div class="haha">
		I love you.
	</div>
</div>
</body>

</html>

     css代码:

.haha
{
	position:absolute;
	left:200px;
	top:200px;
	width: 92px;
	text-align:left;
}

     看看在DreamWeaver中的表现吧:

CSS中的position_第1张图片

你可能感兴趣的:(CSS中的position)