标签的水平居中方法

  1. // 可以让div、p、h(大盒子)水平居中
  2. margin:0 auto
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Document</title>
  6. <style>
  7. /* 清除浏览器的默认样式 */
  8. * {
  9. margin: 0;
  10. padding: 0;
  11. }
  12. /* 根设置宽高为100% */
  13. html,
  14. body {
  15. width: 100%;
  16. height: 100%;
  17. overflow: hidden;
  18. background-color: chocolate;
  19. }
  20. /* 水平居中 */
  21. .contianer {
  22. width: 100px;
  23. margin: 0 auto;
  24. background-color: aqua;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <div class="contianer">
  30. <span>水平居中</span>
  31. </div>
  32. </body>
  33. </html>