Blogger Information
Blog 21
fans 0
comment 0
visits 14867
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
盒模型属性演示和em演示案例
Yuming
Original
657 people have browsed it

Css属性简写与相对单位


常用的盒模型属性-案例

所有的HTML元素都可以看作盒子,下面是我比较常用的一些盒模型属性,从外到内magin->border->padding->content,不同的场景使用不同的盒模型属性对我来说很重要,特别是要求往去重避清,化繁为简这些方向去思考

  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <link rel="stylesheet" href="x.css" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <title>Document</title>
  8. </head>
  9. <body>
  10. <div class="contianer">
  11. <div class="test">HELLO WORLD! HELLO WORLD!</div>
  12. </div>
  13. </body>
  14. </html>
  1. html,
  2. body {
  3. margin: 0;
  4. }
  5. .contianer {
  6. background-image: url(bg.png);
  7. height: 100vh;
  8. overflow: hidden;
  9. }
  10. .contianer .test {
  11. font-size: 16px;
  12. font-weight: 700;
  13. width: 10em;
  14. height: 10em;
  15. line-height: 5em;
  16. color: green;
  17. background: #eee;
  18. margin: 40em auto;
  19. padding: 1em;
  20. border: 0.5em solid skyblue;
  21. overflow: hidden;
  22. text-overflow: ellipsis;
  23. white-space: nowrap;
  24. box-sizing: border-box;
  25. }
  26. .contianer .test:hover {
  27. opacity: 0.8;
  28. box-shadow: 0 0 5px #888888;
  29. }

box-sizing的使用场景通俗来讲是你需要一个宽度不变的盒子还是宽度可以被改变的盒子,另外内部的Content内容也会不一样

  1. 下面可以从视觉改变盒子的大小 并且content为width的宽度
    1. box-sizing: content-box;
  2. 下面则盒子大小不变 但是content的内容大小被严重压缩 都是因为padding和border的值影响到的
  1. box-sizing: border-box;

em的意义

em是一种基于font-size字号的百分比单位,如果我们的font-size=16px;那么1em就相当于是16的100%,这样极大的方便我们在开发过程中进行倍数的计算,另外如果需要统一调整也是极为方便的,只需要改一次font-size就能同步多出em的值

  1. 下面是fonsize = 16px;效果图
  2. 下面是fonsize = 8px;效果图

结论:可以看到所有的尺寸都等比例缩小了,非常方便又使用,特别是在大型项目的时候

```

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:em用得好, 代码写得少
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