Material-UI Typography doesn't center in AppBar












0














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



























    0














    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

























      0












      0








      0







      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 at 21:13









      maranathaman

      2218




      2218
























          1 Answer
          1






          active

          oldest

          votes


















          1














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



          CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



          Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



          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









            1














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



            CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



            Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



            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




























              1














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



              CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



              Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



              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


























                1












                1








                1






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



                CSS property like text-align is specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



                Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



                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 specific for horizontal alignment of children displayed differently e.g. as a table cell, block or inline-block.



                Flex items can be centered horizontally using the justify-content, align-self CSS Properties or some more.



                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 Nov 20 at 21:49

























                answered Nov 20 at 21:44









                Oluwafemi Sule

                10.8k1431




                10.8k1431






























                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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

                    Wiesbaden

                    To store a contact into the json file from server.js file using a class in NodeJS

                    Marschland