标签: html css
您可以看到实施here
我希望每个方框左上角的数字位于圆圈中间。
帮助!
答案 0 :(得分:20)
将line-height设置为框的高度,然后使用text-align: center;
line-height
text-align: center;
所以你会得到,例如:
div { width: 100px; height: 100px; line-height: 100px; text-align: center; }