<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#parent{
width: 300px;
height: 300px;
margin: 0 auto;
position: relative;
}
#parent>#child{
width: 100px;
height: 100px;
background-color: blue;
position:absolute;
left: 8px;
top:0;
}
#parent>#child2{
width: 100px;
height: 100px;
background-color: red;
position:absolute;
top: 0;
right: 0;
}
#parent>#child3{
width: 100%;
height: 30px;
background-color: rgba(0,0,255,0.5);
position:absolute;
left: 0;
bottom:0;
text-align: center;
}
img{
width: 100%;
height: 100%;
}
p{
margin: 0;
color: #fff;
font-size: 20px;
}
</style>
</head>
<body>
<div id="parent">
<img src="img/mv.png" alt="">
<div id="child3">
<p>这是一个头像</p>
</div>
</div>
</body>
</html>
|