liangcai
10/10/2019 - 9:16 AM

纯css实现屏幕头图等比例缩小,http://demo.cssworld.cn/4/2-3.php

纯css实现屏幕头图等比例缩小,http://demo.cssworld.cn/4/2-3.php

.box {
  padding: 10% 50%;
  position: relative;
}

.box > img {
  position: absolute;
  width: 100%; 
  height: 100%;
  left: 0;
  top: 0;
}