css 控制加了一个统一类名的div,想让他水平垂直居中显示,但是这个div大小不一样,css就不能写固定,其他同学有什么好的思路没
1 回答
PIPIONE
TA贡献1829条经验 获得超9个赞
flex布局吧
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
#main
{
width:220px;
height:300px;
border:1px solid black;
display:flex;
justify-content:center;
align-items:center;
}
#main div
{
}
</style>
</head>
<body>
<div id="main">
<div style="background-color:coral;">红色</div>
</div>
</body>
</html>
添加回答
举报
0/150
提交
取消