欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

固定定位position:fixed实现高度自适应的教程

程序员文章站 2022-06-27 14:46:19
position:fixed实现高度自适应 直接上样式 .mask { /*需要宽度*/ width: 70%; background-color: whit...

position:fixed实现高度自适应

直接上样式

.mask {
/*需要宽度*/
  width: 70%;
  background-color: white;
  position: fixed;
  left: 50%;
  top: 50%;
  /* 支持现代浏览器 */
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

当使用:top: 50%;left: 50%;, 是以左上角为原点,故不处于中心位置 translate(-50%,-50%) 作用是,往上(x轴),左(y轴)移动自身长宽的 50%,以使其居于中心位置。