做了两套方案,一套是照视频做的。另一套是嵌套的div
一:嵌套div代码
<DOCTYPE html>
<html>
<head>
<title>
第六天
</title>
<meta charset="utf-8">
<style type="text/css">
div{
width:400px;
height:400px;
background-image:url(1.png);
margin-left:350px;
margin-top:100px;
border:1px solid white;
/*若无边框内部div将出错*/
}
div .div1{
margin-left:40px;
margin-top:50px;
}
p{
width:150px;
height:60px;
font-size:20px;
color:pink;
text-decoration:line-through;
font-style:italic;
background-color:silver;
}
</style>
</head>
<body>
<div>
<p class="div1">这是一首快乐的歌曲!!!</p>
<p class="div1">这是一首快乐的歌曲!!!</p>
<p class="div1">这是一首快乐的歌曲!!!</p>
</div>
</body>
</html>
<