1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <title>Title</title>
- </head>
- <style>
- .container {
- width: 400px;
- background-color: green;
- }
- .fl {
- float: left;
- width: 200px;
- height: 50px;
- background-color: grey;
- }
- .fl2 {
- float: left;
- width: 200px;
- height: 20px;
- background-color: grey;
- }
- </style>
- <body>
- <div class="container">
-
-
-
-
- <div class="fl"></div>
- <span> 你好</span>
-
- <div class="fl"></div>
- </div>
- </body>
- </html>
|