In this section we will see how to typography text center in mui 5 using react js. There is two way you can center text in mui 5 first you can use inline react css and second using mui 5 props.
view
React MUI 5 Typography Text Align Center
1) MUI 5 text center using Inline react css.
import { Typography } from '@mui/material';
export default function Home() {
return (
<>
<Typography variant="h5" style={{ textAlign: 'center' }}>
React MUI 5 Text Align Center Using Inline CSS
</Typography>
</>
);
}
1)MUI 5 text center using React MUI 5 Props.
import { Typography } from '@mui/material';
export default function Home() {
return (
<>
<Typography variant="h5" align="center">
React MUI 5 Text Align Center
</Typography>
</>
);
}

Read Also
1.Install & Setup Vite + React + Typescript + MUI 5
2.React MUI 5 404 Page Example
所有评论(0)