Blogger Information
Blog 5
fans 0
comment 0
visits 3086
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
盒模型和定位
加油2021
Original
629 people have browsed it

box-sizing功能演示

创建一个标准盒模型:

设置这个盒子宽高均为100px(如上图),

但我们给盒子加上边框和内边距后,盒子的宽高就发生了变化(如上图),原因是块元素box-sizing属性默认值为content-box,这时盒子的实际宽高就会加上border和padding属性的值;

当给盒子box-sizing属性设置成border-box后,这时盒子的宽高就等于实际设置的width和height的值

相对定位于绝对定位

postion 属性

描述
absolute 生成绝对定位的元素,相对于 static 定位以外的第一个父元素进行定位。
relative 生成相对定位的元素,相对于其正常位置进行定位。
fixed 生成绝对定位的元素,相对于浏览器窗口进行定位。
static 默认值。没有定位
inherit 规定应该从父元素继承 position 属性的值。

如上图演示:当给对象添加上相对定位并设置偏移时,会相对于自身默认位置进行相应的偏移

这是一个绝对定位的蓝色小正方形
  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>相对对位与绝对定位</title>
  8. </head>
  9. <style>
  10. :root {
  11. font-size: 10px;
  12. }
  13. .box {
  14. width: 10rem;
  15. height: 10rem;
  16. background-color: bisque;
  17. position: relative;
  18. left: 5rem;
  19. }
  20. .box2 {
  21. position: absolute;
  22. width: 5rem;
  23. height: 5rem;
  24. background-color: cornflowerblue;
  25. left: 0;
  26. right: 0;
  27. top: 0;
  28. bottom: 0;
  29. margin: auto;
  30. }
  31. </style>
  32. <body>
  33. <div class="box">
  34. <div class="box2"></div>
  35. </div>
  36. </body>
  37. </html>
Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post