居中语义UI列内容

时间:2018-04-01 00:03:12

标签: reactjs semantic-ui

问题

当页面很小时,配置文件图片正确居中。当页面完整大小时,它会浮动到左侧。为什么是这样?

const App = () => {
  return (
    <Container>
      <Header />
      <Grid centered>
        <Container>
          <Image src={image} size="small" />
        </Container>
      </Grid>
    </Container>
  );
};

正确居中

enter image description here

向左浮动

enter image description here

沙箱链接

https://codesandbox.io/s/w77kymo1lw

1 个答案:

答案 0 :(得分:0)

您需要将ui centered image添加到图片组件。

const App = () => {
  return (
    <Container>
      <Header />
      <Grid centered>
        <Container>
          <Image ui centered image src={image} size="small" />
        </Container>
      </Grid>
    </Container>
  );
};