Blogger Information
Blog 22
fans 0
comment 0
visits 11440
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
盒模型、媒体查询及em和rem的用法
没耐心的渔翁
Original
636 people have browsed it

em和rem的区别用法

em的用法

  • em是一个相对的单位 是相对当前父元素的字体大小 如果父元素设置16px 那么子元素设置1em=16px
    • 代码:
      .div1{font-size: 16px;} .div1 p{font-size: 1em;color: cyan;}em的用法

      rem的用法

  • rem是从根元素继承的 如果根元素定义:font-size=16px,那么1rem=16px
    • 代码:
      html{font-size: 30px;}.div1 p{font-size: 2rem;color: cyan;}rem 的用法

合模型

1.建立两个盒子 两个盒子的外边距(margin)大的一方会覆盖小的一方。
2.margin padding 的顺序为 上右下左
3.box-sizing:border-box;元素的总高度和宽度包含内边距和边框(padding 与 border) 。
合模型 box-sizing属性

媒体查询

1.将html字体定位40px
2.当宽度低于350px时字体将变成70px颜色将变成红色
3.当宽度高于350且低于400时字体将变成30px颜色将变成青绿色
4.当宽度高于400px时字体字体将变成50px颜色将变成蓝色


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