CSS - Put a div in the middle of another div
2021-03-17 10:24
标签:middle ati position pre center not ica cal and Horizontally center: Both horizontally and vertically center: CSS - Put a div in the middle of another div 标签:middle ati position pre center not ica cal and 原文地址:https://www.cnblogs.com/zhangzhihui/p/12787830.html.div_out {
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
}
.div_in {
width: 80%;
height: 80%;
background-image: url(../images/bg.jpg);
background-size: 100% 100%;
}.div_out {
width: 100vw;
height: 100vh;
}
.div_in {
width: 80%;
height: 80%;
background-image: url(../images/bg.jpg);
background-size: 100% 100%;
position: relative;
left: 10%;
top: 10%;
}
上一篇:上传文件到git
下一篇:Github新项目的上传与删除
文章标题:CSS - Put a div in the middle of another div
文章链接:http://soscw.com/index.php/essay/65259.html