我無法居中我的按鈕,不知道爲什麼它不工作。使用css居中按鈕
這裏是html和CSS。
.button {
margin:auto;
display: inline-block;
height: 100px;
width: 300px;
background: #00007f;
border: 2px solid rgba(192, 192, 192, 0.59);
border-radius: 50px;
padding: 15px 20px;
color: rgba(172, 172, 172, 0.55);
font: bold 3em/100px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
box-shadow:0 4px 0 #ACACAC;
}
a.button {
text-decoration: none;
}
<a href="blabla.html" class="button" style= "text-align: center"> Start Game</a>
你爲什麼不** **谷歌呢? 這是CSS中最常見的問題,非常基本的東西。 – vsync