| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <!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>
- span {
- /* block 将元素转换为块元素 */
- display: block;
- width: 100px;
- height: 100px;
- background-color: red;
- margin: 10px;
- }
- div {
- /* inline 将元素转换为行内元素 */
- display: inline;
- width: 100px;
- height: 100px;
- background-color: red;
- margin: 10px;
- }
- i {
- display: inline-block;
- width: 100px;
- height: 100px;
- background-color: red;
- margin: 10px;
- }
- </style>
- </head>
- <body>
- <span>你好</span>
- <span>世界</span>
- <div>hello</div>
- <div>world</div>
- <i>你好</i>
- <i>世界</i>
- </body>
- </html>
|