博客列表 >box-sizing 属性的功能,绝对定位,相对定位 ----0323

box-sizing 属性的功能,绝对定位,相对定位 ----0323

木樨
木樨原创
2021年04月05日 17:17:43537浏览

1.理解 box-sizing 功能并演示

box-sizing 属性

  • border-box:为元素指定的任何内边距和边框都将在已设定的宽度和高度内进行绘制。
  • content-box:宽度和高度分别应用到元素的内容框,在宽度和高度之外绘制元素的内边距和边框。
  • inherit:从父元素继承 box-sizing 属性的值
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>box-sizing</title>
  8. <style>
  9. /* 初始化 */
  10. * {
  11. padding: 0;
  12. margin: 0;
  13. box-sizing: border-box;
  14. }
  15. /* :root === html */
  16. html {
  17. font-size: 10px;
  18. }
  19. /* em,rem */
  20. /* em: 根据元素的上下文来确定它的值 */
  21. /* rem: 根据根元素的字号来设置 */
  22. .box {
  23. width: 200px;
  24. height: 200px;
  25. border: 2px solid #000;
  26. padding: 1rem;
  27. margin: 1rem;
  28. font-size: 1.6rem;
  29. background-color: greenyellow;
  30. /* 考虑将w3c的标准盒子转为IE的盒子 */
  31. /* 将盒子的padding和border计算在width,height内 */
  32. /* box-sizing: border-box; */
  33. /* 再转为标准盒子 */
  34. box-sizing: content-box;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="box">item1</div>
  40. </body>
  41. </html>

2.理解相对定位与绝对定位的功能并演示

position 属性

  • static(默认):默认文档流,靠 margin 来定位,忽略 top, bottom, left, right 声明
  • relative(相对定位):相对于原位置的左上角通过 left、top 属性来重新定位,但不会让出原空间位置。
  • absolute(绝对定位):相对于最近的那个脱离了标准流的父元素定位,如果没有则相对于当前视窗左上角定位,让出原空间位置。通过 left、top 属性来定位
  • fixed(固定定位):总是以视窗左上角通过 top、left 定位(或以视窗右下角通过 right、bottom 定位)
  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>定位</title>
  8. <style>
  9. .box {
  10. width: 20em;
  11. height: 15em;
  12. background-color: lightgreen;
  13. /* 默认:静态定位,就是没有定位 */
  14. /* position: static; */
  15. /* 相对定位: 自动的转为定位元素了 */
  16. /* 定位元素: 只要这个元素上有非static的定位属性,就是定位元素 */
  17. /* position: relative; */
  18. /* 只要是定位元素,定位偏移量有效 */
  19. /* 相对于它在文档流中的原始位置进行定位 */
  20. /* top: 5em;
  21. left: 4em; */
  22. /* 绝对定位 :定位元素脱离了文档流,相对于它在文档流中的原始位置进行定位 */
  23. /* 文档流: 显示顺序与书写顺序一致 */
  24. /* position: absolute;
  25. top: 5em;
  26. left: 4em; */
  27. }
  28. .parent {
  29. border: 1px solid #000;
  30. /* 转为定位元素,做为绝对定位元素的定位父级/定位参考/定位包含块 */
  31. position: relative;
  32. min-height: 30em;
  33. }
  34. .box {
  35. /* 固定定位 : 永远相对于html定位*/
  36. position: fixed;
  37. }
  38. </style>
  39. </head>
  40. <body>
  41. <div class="parent">
  42. <div class="box"></div>
  43. </div>
  44. </body>
  45. </html>

3.使用绝对定位实现“块级居中”

实现效果为:

  1. <!DOCTYPE html>
  2. <html lang="zh-CN">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>绝对定位的一个应用: 块级居中</title>
  8. <style>
  9. .parent {
  10. border: 1px solid;
  11. background-color: yellow;
  12. width: 25em;
  13. height: 25em;
  14. /* 转为定位元素,做为box的定位父级 */
  15. position: relative;
  16. }
  17. /* 使用绝对定位一步搞定块元素的垂直水平居中 */
  18. .box {
  19. width: 15em;
  20. height: 15em;
  21. background-color: lightgreen;
  22. /* 绝对定位 */
  23. position: absolute;
  24. /* 定位空间 */
  25. top: 0;
  26. left: 0;
  27. right: 0;
  28. bottom: 0;
  29. /* 垂直和水平的居中 */
  30. margin: auto;
  31. }
  32. </style>
  33. </head>
  34. <body>
  35. <div class="parent">
  36. <div class="box"></div>
  37. </div>
  38. </body>
  39. </html>
声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议