html
<div class="button_wrapper">
<button class="button1">ボタン1</button>
</div>
CSS
.button_wrapper{
text-align:center;
}
ボタンにはtext-align:center;やmargin:0 auto;によるセンタリングが効かないので、
ボタンを囲んだdivにtext-align:center;を指定する。
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
<div class="button_wrapper">
<button class="button1">ボタン1</button>
</div>
.button_wrapper{
text-align:center;
}
ボタンにはtext-align:center;やmargin:0 auto;によるセンタリングが効かないので、
ボタンを囲んだdivにtext-align:center;を指定する。
Register as a new user and use Qiita more conveniently
Go to list of users who liked