How do I align this item with flex? [duplicate]

梦想与她 提交于 2019-12-24 23:40:58

问题


I am trying to center align this button with flex box, but it is not working and I don't know what the problem is.

<html>
   <head>
     <style media="screen">
        body {
            display: flex;
            align-items: center;
            justify-content: center;
        }
     </style>
   </head>

   <body>
       <button> Align Center</button>
   </body>
</html>

来源:https://stackoverflow.com/questions/57113597/how-do-i-align-this-item-with-flex

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!