27_inlieblock.html 676 B

12345678910111213141516171819202122232425
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  6. <title>Document</title>
  7. <style>
  8. span{
  9. width: 100px;
  10. height: 100px;
  11. background-color: red;
  12. display: inline-block;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <!-- 行块元素 既有行元素特性(在同一行展示) 又有块元素特性(可以设置高宽) -->
  18. <!-- display:inline-block -->
  19. <!-- <img src="./image/logo.png" alt="">
  20. <img src="./image/logo.png" alt=""> -->
  21. <span class="box1"></span>
  22. <span class="box2"></span>
  23. </body>
  24. </html>