标签:code order 问题解决 ali point item height 解决 center
outline是不占据父级空间的
.chess {
width : 50px;
height: 50px;
outline: 2px solid lightgray;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
.chess {
width : 50px;
height: 50px;
border: 2px solid lightgray;
box-sizing: border-box;
display: flex;
justify-content: center;
align-items: center;
cursor: pointer;
}
标签:code order 问题解决 ali point item height 解决 center
原文地址:https://www.cnblogs.com/zhizhi0810/p/11624692.html