元素铺满全屏

让元素的宽度和高度刚好铺满整个屏幕

  1. <div class="full"></div>
  1. html,body{
  2. margin: 0; /*消除默认留白*/
  3. padding: 0;
  4. }
  5. .full{
  6. position: absolute;
  7. width: 100%;
  8. height: 100%;
  9. background: salmon;
  10. }