定位的配合使用
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
<style type="text/css">
.div1{
margin-left: 100px;
border: 5px dashed cornflowerblue;
display: inline-block;
position: relative;
}
img{
width: 900px;
}
p{
font-size: 24px;
color: green;
/*float: left;*/
position: absolute;
top: 10px;
left: 10px;
}
</style>
</head>
<body>
<div class="div1">
<img src="../img/201412010941115182.jpg"/>
<p>
面对疾风吧
</p>
</div>
</body>
</html>