大家好,这是一个用css flex制作的简单的tic tac toe游戏板。我想粘贴" X"当它在使用flex时盘旋时,在盒子的垂直中心。这是链接 codepen.io/anon/pen/bMOmRq
答案 0 :(得分:0)
将此css添加到.box
display: flex;
align-items: center;
justify-content: center;
答案 1 :(得分:0)
将此代码用于垂直中心:
.box:hover::before{
content: "X";
display:flex;
align-items:center;
height:100%;
justify-content: center;
}