我正试着在我的博客帖子里放一个按钮。 我已经设计了按钮,但是我不能正确地将它放在页面的中心。
我怎么把这个按钮居中?
<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:0auto;
。
null
.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>