gpt4 book ai didi

material-ui - 如何将 helperText 对齐到 Material-UI for React 中 TextField 变体 ="outlined"的最左侧?

转载 作者:行者123 更新时间:2023-12-05 03:40:21 24 4
gpt4 key购买 nike

默认情况下,helperText“Some important text”没有对齐到最左边。怎么做到的?

screenshot

最佳答案

您可以为您的 css 使用 makeStyles,然后将您生成的样式应用到 FormHelperTextProps prop 中的 className prop from 文本字段

import React from "react";
import { TextField } from "@material-ui/core";
import { makeStyles } from "@material-ui/core/styles";

const useStyles = makeStyles((theme) => ({
helperText: {
marginLeft: 0
}
}));

export default function App() {
const classes = useStyles();
return (
<div className="App">
<TextField
FormHelperTextProps={{
className: classes.helperText
}}
label="Test"
helperText="Helper text..."
variant="outlined"
/>
</div>
);
}

现场演示:

Edit how-to-align-the-helpertext-to-the-far-left-in-the-textfield-variant-outlined

关于material-ui - 如何将 helperText 对齐到 Material-UI for React 中 TextField 变体 ="outlined"的最左侧?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68177082/

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