WebApp 元素上下居中

HTML页面代码

<div class="content">
			<div class="itme_div itme_div2">programmerdu</div>
		</div>

CSS代码

.content {
  width: 100%;
  background: #089DB0;
  height: 400px;
  color: #FFFFFF;
  position: relative;
}
/*方二*/
.content.itme_div1 {
  -webkit-align-items: center;
  -webkit-justify-content: center;
  display: -webkit-flex;
}
.content .itme_div {
  width: 50%;
  height: 50%;
  background: red;
  z-index: 3;
}
/*方法一*/
.content .itme_div1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
}


你可能感兴趣的:(css3,center,center,元素上下居中,-webkit-flex,display:)