box{
border: 1px solid red;
width: 400px;
height: 400px;
}
.con{
background: lightpink;
width: 200px;
height: 200px;
}css
.box{
position: relative;
}
.con{
position: absolute;
top: 50%;
left: 50%;
margin-left: -100px;
margin-top: -100px;
}html
.box{
position: relative;
}
.con{
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
margin: auto;
}
flex
.box{
position: relative;
}
.con{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);orm
}htm
.box{
line-height: 400px;
text-align: center;
}
.con{
font-size: 18px;
display: inline-block;
vertical-align: middle;
text-align: center;
line-height: 200px;
}blog
.box{
display: table-cell;
text-align: center;
vertical-align: middle;
}
.con{
display: inline-block;
}it
.box{
display: flex;
justify-content: center;
align-items: center;
}
io