<html>
<meta charset="utf-8" />
<head>
<title>自我介绍</title>
<style type="text/css">
.box1{width:200px;
height:200px; position:relative;
}
.box2{ width:99%; position:absolute;
bottom:0; left:o;}
</style>
<div class=".box1"><img src="http://img.mukewang.com/52b4113500018cf102000200.jpg" >
<div class=".box2">这是我的女朋友 </div>
</div>
</body>
</html>把class=".box1"和class=".box2"中的“.”去掉,前面的.box1{}中"."是类选择符,类名应该是个box1
<html>
<meta charset="utf-8" />
<head>
<title>自我介绍</title>
<style type="text/css">
.box1{width:200px;
height:200px; position:relative;
}
.box2{ width:99%; position:absolute;
bottom:0; left:o;}
</style>
<div class="box1"><img src="http://img.mukewang.com/52b4113500018cf102000200.jpg" >
<div class="box2">这是我的女朋友 </div>
</div>
</body>
</html>