欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

無法將圓內(nèi)的文本居中

江奕云2年前8瀏覽0評論

使用脈輪界面和css, 我想讓文字在圓圈內(nèi)居中。

這是我所擁有的:

<Td verticalAlign="middle">
 <Grid templateColumns="repeat(3, 1fr)">
  <GridItem colSpan={1} alignSelf="center">
   <Box className={testCss}>6</Box>
  </GridItem>
.
.
.
 </Grid>
</Td>

export const testCss = style({
    width: "15px",
    height: "15px",
    backgroundColor: "blue",
    color: "white",
    borderRadius: "50%",
    display: "flex",
    alignItems: "center",
    justifyContent: "center",
});

這是它看起來的樣子。 (圓圈內(nèi)的數(shù)字不垂直居中)

enter image description here

我已經(jīng)試過了 更改GridItem = & gt display:flex和add set alignItems:& quot;中心& quot和justify content:& quot;中心& quot但這并沒有解決。

有人知道如何解決這個(gè)問題嗎?