gpt4 book ai didi

javascript - 在 Material UI Typography 中将内容与变体居中对齐作为标题

转载 作者:行者123 更新时间:2023-12-02 16:33:36 25 4
gpt4 key购买 nike

我有两个带有默认变体和标题变体的 Typography 元素。我如何使用 align="center" 属性将内容居中,并将变体作为标题,因为这似乎不起作用。

  render() {
return (
<div>
<Typography align="center">Centered text</Typography>
<Typography color="textSecondary" variant="caption" align="center">A Caption!</Typography>
</div>
);
}

我使用 StackBlitz 创建了一个工作示例.有人可以帮忙吗?

最佳答案

import React from "react";
import Typography from "@material-ui/core/Typography";

export default function DisableElevation() {
return (
<div>
<Typography align="center">Centered text</Typography>
<Typography
display="block"
color="textSecondary"
variant="caption"
align="center"
>
A Caption!
</Typography>
</div>
);
}

关于javascript - 在 Material UI Typography 中将内容与变体居中对齐作为标题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63140186/

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