欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

box-sizing属性和常用元素的居中方式

程序员文章站 2022-04-08 18:34:09
...

1. box-sizing属性;

属性值 说明
box-sizing: content-box w3c标准盒子模型,width/height 不含padding/border
box-sizing: border-box 盒模型以元素边框区为边界,包含padding、border值.称之为IE盒子模型

1.content-box 示例如下

  1. <head>
  2. <meta charset="UTF-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <title>Document</title>
  5. <style>
  6. :root {
  7. font-size: 10px;
  8. }
  9. .box {
  10. width: 10em;
  11. height: 10em;
  12. background-color: bisque;
  13. border: 3px solid navajowhite;
  14. background-clip: content-box;
  15. padding: .5em;
  16. box-sizing: content-box;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="box"></div>
  22. </body>

box-sizing属性和常用元素的居中方式

1.border-box 示例如下

  1. <head>
  2. <meta charset="UTF-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <title>border-box</title>
  5. <style>
  6. :root {
  7. font-size: 10px;
  8. }
  9. .box {
  10. width: 10em;
  11. height: 10em;
  12. background-color: bisque;
  13. border: 3px solid navajowhite;
  14. background-clip: content-box;
  15. padding: .5em;
  16. box-sizing: border-box;
  17. }
  18. </style>
  19. </head>
  20. <body>
  21. <div class="box"></div>
  22. </body>

box-sizing属性和常用元素的居中方式

2. 常用的元素居中方式

行内元素水平垂直居中 text-algin:center; 和 line-height: ;

  1. <head>
  2. <meta charset="UTF-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <title>行内元素水平垂直居中</title>
  5. <style>
  6. :root {
  7. font-size: 10px;
  8. }
  9. .box {
  10. width: 20em;
  11. height: 20em;
  12. background-color: bisque;
  13. border: 3px solid navajowhite;
  14. background-clip: content-box;
  15. padding: .5em;
  16. box-sizing: content-box;
  17. }
  18. .box>div{
  19. text-align: center;
  20. line-height: 20em;
  21. }
  22. </style>
  23. </head>
  24. <body>
  25. <div class="box"><div>行内元素水平垂直居中</div></div>
  26. </body>

box-sizing属性和常用元素的居中方式

块元素水平垂直居中 margin position

  1. <head>
  2. <meta charset="UTF-8">
  3. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  4. <title>块元素水平垂直居中</title>
  5. <style>
  6. :root {
  7. font-size: 10px;
  8. }
  9. .box {
  10. width: 20em;
  11. height: 20em;
  12. background-color: bisque;
  13. border: 3px solid navajowhite;
  14. position: relative;
  15. }
  16. .box>div{
  17. width: 10em;
  18. height: 10em;
  19. background-color: olive;
  20. position: absolute;
  21. top: 0;
  22. left: 0;
  23. right: 0;
  24. bottom: 0;
  25. margin: auto;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div class="box"><div>块元素水平垂直居中</div></div>
  31. </body>

box-sizing属性和常用元素的居中方式