1 <!DOCTYPE html>
2 <html lang="en">
3 <head>
4 <meta charset="UTF-8">
5 <title>Document</title>
6 <style>
7 *{
8 margin:0;
9 padding:0;
10 }
11 .box{
12 width:800px;
13 height:500px;
14 background:orange;
15 position: relative;
16 }
17 h3,h4,h2{
18 width:200px;
19 height:200px;
20 text-align:center;
21 line-height:200px;
22 font-size:60px;
23 font-weight:900;
24 color:#fff;
25 float:left;
26 }
27 h2{
28 background:#000;
29 }
30 h3{
31 background:blue;
32 position:absolute;
33 left:30px;top:50px;
34 }
35 h4{
36 background:green;
37 }
38 </style>
39 </head>
40 <body>
41 <div class="box">
42 <h2>1</h2>
43 <h3>
44 <em></em>
45 </h3>
46 <h4>3</h4>
47 </div>
48 </body>
49 </html>
![]()