Asp,Php,Jssdk,mysql,mssql,微信公众号开发,小程序开发-学习笔记 收集日常学习笔记和重点,交流QQ:79657181,手机/微信:18611436777

图片垂直水平居中

/*图片垂直水平居中*/

.middleCenter {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  right: 0;

  max-width: 100%;

  max-height: 100%;

  display: block;

  vertical-align: middle;

  text-align: center;

  margin: auto;

}

/*图片垂直右对齐*/

.middleRight {

  position: absolute;

  top: 0;

  bottom: 0;

  right: 0;

  max-width: 100%;

  max-height: 100%;

  display: block;

  vertical-align: middle;

  margin: auto;

}

/*图片垂直左对齐*/

.middleLeft {

  position: absolute;

  top: 0;

  bottom: 0;

  left: 0;

  max-width: 100%;

  max-height: 100%;

  display: block;

  vertical-align: middle;

  margin: auto;

}


2020年6月12日 | 发布:anco | 分类:css | 评论:0