gpt4 book ai didi

reactjs - 如何在 Semantic UI React 中居中对齐按钮?

转载 作者:行者123 更新时间:2023-12-03 13:26:05 25 4
gpt4 key购买 nike

如何在 Semantic UI React 中居中对齐按钮
我尝试了几种方法,使用 Grid、Grid Row,但没有成功

import {Segment, Button,Label,Sticky,Grid,Container} from 'semantic-ui-react';
import React, {Component} from 'react';

const GeneralSupportSegment =() => (
<Segment>
<Label ribbon color="blue" size="large">Support</Label>
<Button>contact us</Button>
</Segment>
);

export default GeneralSupportSegment;

最佳答案

如果您能分享您尝试做的事情,那就太好了。

一种解决方案可能是:

<Segment>
<Label ribbon color="blue" size="large">Support</Label>
<Grid>
<Grid.Column textAlign="center">
<Button>contact us</Button>
</Grid.Column>
</Grid>
</Segment>

你可以在这里看到它的工作原理: https://codesandbox.io/s/z2pkv0ro43

关于reactjs - 如何在 Semantic UI React 中居中对齐按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54265190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com