2017-10-26 4 views
0

ボタンを水平に中央に配置したいと思います。ボタンを水平に配置するためのブートストラップ4クラスはありますか?

margin: 0 auto;
をしかし、これを行うにはBootstrap4にはクラスがありません:私はCSSでそれを行うことができますか?

ありがとうございました!

<!doctype html> 
 
<html lang="en"> 
 
    <head> 
 
    <title>Hello, world!</title> 
 
    <!-- Required meta tags --> 
 
    <meta charset="utf-8"> 
 
    <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> 
 

 
    <!-- Bootstrap CSS --> 
 
    <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css" integrity="sha384-PsH8R72JQ3SOdhVi3uxftmaW6Vc51MKb0q5P2rRUpPvrszuE4W1povHYgTpBfshb" crossorigin="anonymous"> 
 
    </head> 
 

 
    <body> 
 
    <div class="container"> 
 
     <div class="row"> 
 
      <button type="button" class="btn btn-primary">Primary</button> 
 
     </div> 
 
</div> 
 

 
    <!-- Optional JavaScript --> 
 
    <!-- jQuery first, then Popper.js, then Bootstrap JS --> 
 
    <script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script> 
 
    <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script> 
 
    <script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script> 
 
    </body> 
 
</html>

答えて

0

このクラスを使用すると、

<div class="container"> 
    <div class="row justify-content-center"> 
     <button type="button" class="btn btn-primary">Primary</button> 
    </div> 
</div> 

flexを使用するようになります。

ここには、オプションの完全なリストがあります。Doc

関連する問題