首页htmltext_alignCSS Property Value - 如何text-align: center; 中心图像/段落/按钮

CSS Property Value - 如何text-align: center; 中心图像/段落/按钮

我们想知道如何text-align: center; 中心图像/段落/按钮。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#center {
  background-color: red;
  text-align: center;
}
</style>
</head>
<body>
  <div id="center">
    <button>button1</button>
  </div>
</body>
</html>