| 1234567891011121314151617181920212223 |
- <!doctype html>
- <html lang="en">
- <head>
- <meta http-equiv="Content-type" content="text/html; charset=utf-8">
- <title>Project1</title>
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <style>
- body {
- margin: 0px;
- font-size: 20px;
- }
- </style
- </head>
- <body>
- Label1
- <div id="Div1" style="position: relative; width: 100px; height: 120px; border: 1px solid red;">
- <div id="Div2" style="position: absolute; right: 10px; bottom: 15px; border: 1px solid blue;">
- Div2
- </div>
- </div>
- Label2
- </div></body>
- </html>
|