12345678910111213141516171819202122232425262728293031 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- <style type="text/css">
- body,html{
- height:100%;
- width:100%;
- position: relative;
- }
- .c1{
- height:400px;
- width: 1050px;
- }
- .c2{
- width: 200px;
- height: 200px;
- background: #ff0;
- z-index: 99;
- position: absolute;
- top: 0px;
-
- }
- </style>
- </head>
- <body>
- <div class="c1"></div>
- <!-- <div class="c2"></div> -->
- </body>
- </html>
|