想把文字的三段话放到绿色背景的上面,怎么做?
<!DOCTYPE html>
<html>
<head >
<meta charset="utf-8">
<title>作业</title>
<style type="text/css">
.div2{
width:400px;
height: 400px;
background-color: olive;
}
p{
color:red;
font-size:40px;
background-color: silver;
width:200px;
left:20px;
tou:20px;
}
</style>
</head>
<body >
<p >
这是一段话啦
</p>
<p >
这是一段话啦
</p>
<p >
这是一段话啦
</p>
<div class="div2">
</div>
</body>
</html>