123456789101112131415161718192021222324252627282930313233343536373839 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>Document</title>
- <style>
- #box1 {
- width: 300px;
- height: 300px;
- background: #ff0;
- }
- #box2 {
- width: 150px;
- height: 150px;
- background: #f00;
- }
- #box3 {
- width: 300px;
- height: 300px;
- background: #00f;
- }
- #box4 {
- width: 150px;
- height: 150px;
- background: #f00;
- }
- </style>
- </head>
- <body>
- <div id="box1">
- <div id="box2"></div>
- </div>
- <div id="box3">
- <div id="box4"></div>
- </div>
- <script src="../js/8.事件流.js"></script>
- </body>
- </html>
|