将按钮居中 html

Centering a button in html

我正在尝试在我的博客 post 中放置一个按钮。我设计了按钮,但我无法在页面上正确居中。

如何让这个按钮居中?

<html>
  <head>
    <style>
      .button {
        background-color: #4CAF50;
        border: none;
        color: white;
        padding: 15px 32px;
        text-align: center;
        text-decoration: none;
        display: inline-block;
        font-size: 16px;
        margin: 4px 2px;
        cursor: pointer;
      }
    </style>
  </head>
  <body>
    <h2>Buttons</h2>

     
    <a class="button" href="#">Link Button</a>
    <button class="button">Button</button>
  </body>
</html>


    

在父元素中使用 margin: 0 auto;

.button {
  background-color: #4CAF50;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}

body {
  text-align: center;
}
<h2>Buttons</h2>


<a class="button" href="#">Link Button</a>
<button class="button">Button</button>