gpt4 book ai didi

javascript - Material 用户界面 : how to change fontSize in Lists?

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

我正在使用 React js 和 Material UI 创建一些表单。我想让某些列表上的字体大小更小,以便获得更紧凑的演示文稿,但无论我在哪个级别添加代码 fontSize={10} ,它似乎都没有效果。

如何更改字体大小?

这是一些示例代码,我从Sandbox获得关于 Material UI documentation .

const styles = theme => ({
root: {
width: '100%',
maxWidth: 360,
backgroundColor: theme.palette.background.paper,
},
});

function FolderList(props) {
const { classes } = props;
return (
<div className={classes.root}>
<List>
<ListItem>
<ListItemText primary="Photos" secondary="Jan 9, 2014" />
</ListItem>
<ListItem>
<ListItemText primary="Work" secondary="Jan 7, 2014" />
</ListItem>
</List>
</div>
);
}

最佳答案

对于 mui v5,使用 primaryTypographyProps 属性传递所需的样式

<ListItemText 
primaryTypographyProps={{fontSize: '18px'}}
primary="List Text"
/>

关于javascript - Material 用户界面 : how to change fontSize in Lists?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51801916/

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