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>
    </>
  );
}
Enter fullscreen mode Exit fullscreen mode

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>
    </>
  );
}
Enter fullscreen mode Exit fullscreen mode

React MUI 5 Text Align Center Using props

Read Also

1.Install & Setup Vite + React + Typescript + MUI 5
2.React MUI 5 404 Page Example

Logo

React社区为您提供最前沿的新闻资讯和知识内容

更多推荐