Blogger Information
Blog 34
fans 0
comment 0
visits 24472
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
css基础-盒模型,媒体查询,单位
CY明月归
Original
745 people have browsed it

作业内容:

  1. 实例演示盒模型常用属性,注意box-sizing的用法
  2. 实例演示媒体查询
  3. 实例演示em,rem用法,并说出之间差别

盒模型:

  1. @import 'font_icon/iconfont.css';
  2. .box1{
  3. background-color: lightcoral;
  4. display: inline;
  5. margin: 40px;
  6. /* margin会在垂直方向出现折叠 */
  7. }
  8. /* 布局前提: 是在一个"宽度受限,而高度无限的空间内" */
  9. .box2{
  10. width: 200px;
  11. height:200px;
  12. background-color: lightgoldenrodyellow;
  13. /* 四值:完整语法, 上右下左,顺时针方向 */
  14. /* 三值语法: 左右相等,而上下不等 */
  15. /* 双值语法: 左右相同,上下也相同,但并不是同一个值*/
  16. /* 三值与双值的记忆方法: 第二个位置的值一定表示的是左右 */
  17. /* 单值: 四个方向全相同 */
  18. padding: 20px; /* padding不可见 不能设置颜色和边框 */
  19. margin: 50px 20px;
  20. border: 10px dashed darkgoldenrod;
  21. box-sizing: border-box;
  22. }

实例演示媒体查询:

  1. html{
  2. font-size: 15px;
  3. }
  4. /* 小于390 font-size:10px ; */
  5. @media (max-width:390px){
  6. html{
  7. font-size: 10px;
  8. }
  9. }
  10. /*等于或在390到400之间 font-size:12px ; */
  11. @media (min-width:390px) and (max-width: 400px){
  12. html{
  13. font-size: 12px;
  14. }
  15. }
  16. /*等于或在400到420之间 继承html大小 font-size:15px ; */
  17. /*大于420 font-size:18px ; */
  18. @media (min-width:420px){
  19. html{
  20. font-size: 18px;
  21. }
  22. }

单位em,rem:

Correcting teacher:PHPzPHPz

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