当页面很小时,配置文件图片正确居中。当页面完整大小时,它会浮动到左侧。为什么是这样?
const App = () => {
return (
<Container>
<Header />
<Grid centered>
<Container>
<Image src={image} size="small" />
</Container>
</Grid>
</Container>
);
};
答案 0 :(得分:0)
您需要将ui centered image
添加到图片组件。
const App = () => {
return (
<Container>
<Header />
<Grid centered>
<Container>
<Image ui centered image src={image} size="small" />
</Container>
</Grid>
</Container>
);
};