<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>absolute样式y与relative相结合</title>
<style type="text/css">
img{ width:200px;
height:200px;}
div{ border:5px solid #F00;}
#box1{
width:200px;
height:200px;
position:relative;
}
#box2{ color:#0F0;s
width:99%;
height:50px;
position:absolute;
top:145px;
left:-5px;
}
</style>
</head>
<body>
<div id="box1">
<img src="../img/照片2.jpg" />
<div id="box2">当我还是三年级的时候,我还是一个害羞的小女生</div>
</div>
</body>
</html>