Material-UI Typography doesn't center in AppBar












2















I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



class App extends React.Component {
render() {
return (
<div>
<AppBar>
<Toolbar>
<Typography
variant="h6"
color="inherit"
style={{ align: "center" }}
>
Header
</Typography>
</Toolbar>
</AppBar>
</div>
);
}
}

ReactDOM.render(<App />, document.getElementById("app"));


... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



I've also tried using a const styles and exporting the AppBar withStyles():



const styles = {
root: {
flexGrow: 1
},
typography: {
align: "center"
}
};

function Header(props) {
const { classes } = props;

return (
<div className={classes.root}>
<AppBar>
<Toolbar>
<Typography
variant="h6"
color="inherit"
className={classes.typography}
>
Header
</Typography>
</Toolbar>
</AppBar>
</div>
);
}

Header.propTypes = {
classes: PropTypes.object.isRequired
};

export default withStyles(styles)(Header);


but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.










share|improve this question



























    2















    I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



    class App extends React.Component {
    render() {
    return (
    <div>
    <AppBar>
    <Toolbar>
    <Typography
    variant="h6"
    color="inherit"
    style={{ align: "center" }}
    >
    Header
    </Typography>
    </Toolbar>
    </AppBar>
    </div>
    );
    }
    }

    ReactDOM.render(<App />, document.getElementById("app"));


    ... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



    I've also tried using a const styles and exporting the AppBar withStyles():



    const styles = {
    root: {
    flexGrow: 1
    },
    typography: {
    align: "center"
    }
    };

    function Header(props) {
    const { classes } = props;

    return (
    <div className={classes.root}>
    <AppBar>
    <Toolbar>
    <Typography
    variant="h6"
    color="inherit"
    className={classes.typography}
    >
    Header
    </Typography>
    </Toolbar>
    </AppBar>
    </div>
    );
    }

    Header.propTypes = {
    classes: PropTypes.object.isRequired
    };

    export default withStyles(styles)(Header);


    but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.










    share|improve this question

























      2












      2








      2








      I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



      class App extends React.Component {
      render() {
      return (
      <div>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      style={{ align: "center" }}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }
      }

      ReactDOM.render(<App />, document.getElementById("app"));


      ... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



      I've also tried using a const styles and exporting the AppBar withStyles():



      const styles = {
      root: {
      flexGrow: 1
      },
      typography: {
      align: "center"
      }
      };

      function Header(props) {
      const { classes } = props;

      return (
      <div className={classes.root}>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      className={classes.typography}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }

      Header.propTypes = {
      classes: PropTypes.object.isRequired
      };

      export default withStyles(styles)(Header);


      but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.










      share|improve this question














      I'm trying center the text in an AppBar. I've tried centering the text in Typography element, using align="center", textAlign="center", and style={{ align: "center" }}, among others:



      class App extends React.Component {
      render() {
      return (
      <div>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      style={{ align: "center" }}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }
      }

      ReactDOM.render(<App />, document.getElementById("app"));


      ... but is doesn't work unless I remove the Toolbar. But then I would have to manually change the height of the AppBar, which I've also not found a way to do. In addition, every instance I've seen of the AppBar uses the Toolbar. All the solutions that I've found that could address this are outdated and don't work (there's no such thing as a ToolbarGroup anymore).



      I've also tried using a const styles and exporting the AppBar withStyles():



      const styles = {
      root: {
      flexGrow: 1
      },
      typography: {
      align: "center"
      }
      };

      function Header(props) {
      const { classes } = props;

      return (
      <div className={classes.root}>
      <AppBar>
      <Toolbar>
      <Typography
      variant="h6"
      color="inherit"
      className={classes.typography}
      >
      Header
      </Typography>
      </Toolbar>
      </AppBar>
      </div>
      );
      }

      Header.propTypes = {
      classes: PropTypes.object.isRequired
      };

      export default withStyles(styles)(Header);


      but it also doesn't work. I'm thinking this should be simple, I'm not sure what I'm missing.







      css reactjs material-ui






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 '18 at 21:13









      maranathamanmaranathaman

      3218




      3218
























          1 Answer
          1






          active

          oldest

          votes


















          3














          The AppBar component is styled to render its children as flex items.



          CSS property like text-align is used for horizontal alignment of children that is displayed different from a flex item e.g. as a table cell, block or inline-block.



          Flex items can be centered horizontally using the justify-content or align-self CSS Property or more other ones.



          const styles = {
          root: {
          flexGrow: 1,
          },
          appbar: {
          alignItems: 'center',
          }
          };

          function Header(props) {
          const { classes } = props;

          return (
          <div className={classes.root}>
          <AppBar
          className={classes.appbar}
          color="default"
          position="static"
          >
          <!--...-->
          </AppBar>
          </div>
          );
          }





          share|improve this answer

























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401619%2fmaterial-ui-typography-doesnt-center-in-appbar%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            3














            The AppBar component is styled to render its children as flex items.



            CSS property like text-align is used for horizontal alignment of children that is displayed different from a flex item e.g. as a table cell, block or inline-block.



            Flex items can be centered horizontally using the justify-content or align-self CSS Property or more other ones.



            const styles = {
            root: {
            flexGrow: 1,
            },
            appbar: {
            alignItems: 'center',
            }
            };

            function Header(props) {
            const { classes } = props;

            return (
            <div className={classes.root}>
            <AppBar
            className={classes.appbar}
            color="default"
            position="static"
            >
            <!--...-->
            </AppBar>
            </div>
            );
            }





            share|improve this answer






























              3














              The AppBar component is styled to render its children as flex items.



              CSS property like text-align is used for horizontal alignment of children that is displayed different from a flex item e.g. as a table cell, block or inline-block.



              Flex items can be centered horizontally using the justify-content or align-self CSS Property or more other ones.



              const styles = {
              root: {
              flexGrow: 1,
              },
              appbar: {
              alignItems: 'center',
              }
              };

              function Header(props) {
              const { classes } = props;

              return (
              <div className={classes.root}>
              <AppBar
              className={classes.appbar}
              color="default"
              position="static"
              >
              <!--...-->
              </AppBar>
              </div>
              );
              }





              share|improve this answer




























                3












                3








                3







                The AppBar component is styled to render its children as flex items.



                CSS property like text-align is used for horizontal alignment of children that is displayed different from a flex item e.g. as a table cell, block or inline-block.



                Flex items can be centered horizontally using the justify-content or align-self CSS Property or more other ones.



                const styles = {
                root: {
                flexGrow: 1,
                },
                appbar: {
                alignItems: 'center',
                }
                };

                function Header(props) {
                const { classes } = props;

                return (
                <div className={classes.root}>
                <AppBar
                className={classes.appbar}
                color="default"
                position="static"
                >
                <!--...-->
                </AppBar>
                </div>
                );
                }





                share|improve this answer















                The AppBar component is styled to render its children as flex items.



                CSS property like text-align is used for horizontal alignment of children that is displayed different from a flex item e.g. as a table cell, block or inline-block.



                Flex items can be centered horizontally using the justify-content or align-self CSS Property or more other ones.



                const styles = {
                root: {
                flexGrow: 1,
                },
                appbar: {
                alignItems: 'center',
                }
                };

                function Header(props) {
                const { classes } = props;

                return (
                <div className={classes.root}>
                <AppBar
                className={classes.appbar}
                color="default"
                position="static"
                >
                <!--...-->
                </AppBar>
                </div>
                );
                }






                share|improve this answer














                share|improve this answer



                share|improve this answer








                edited Dec 31 '18 at 22:36

























                answered Nov 20 '18 at 21:44









                Oluwafemi SuleOluwafemi Sule

                11.2k1532




                11.2k1532






























                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53401619%2fmaterial-ui-typography-doesnt-center-in-appbar%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    How to fix TextFormField cause rebuild widget in Flutter

                    Npm cannot find a required file even through it is in the searched directory