<a>
をdivの中央に配置するにはどうすればいいですか?40%のスペースを100%幅のdivの内側に配置します。2つのボタンの横にCSSがあります。
a.explore {
padding: 15px 20px;
text-decoration: none;
text-align: center;
border: 1px solid #4f96b6;
font-size: 20px;
}
#container {
width: 100%;
}
<div id="container">
<a class="explore" href="#" target="_blank">I'm Ready To Go</a>
<a class="explore" href="#" target="_blank">Take Me Somewhere</a>
</div>
[OK]を、リンク、私はそれをどのように行うのですか? –