博客列表 >box-sizing属性和常用元素的居中方式

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

xosing的博客
xosing的博客原创
2020年12月20日 12:18:18799浏览

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>

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>

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>

块元素水平垂直居中 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>

声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议