web-dev-qa-db-fra.com

Comment aligner correctement un élément avec Twitter Bootstrap?

J'ai 3 éléments et j'essaie d'aligner le bouton sur le côté droit de l'écran, mais j'ai du mal à le faire.

<div class="container">
  <div class="row-fluid">
    <h4>
      <img src="img.png" style="width:50px;">
      Title
      <a href="link_to_img.html" class="btn btn-success">Grab it!</a>
    </h4>
  </div>
</div>
33
sharataka

Essayez la classe 'tirez à droite'.

<div class="pull-right">...</div>

Voir http://getbootstrap.com/css/#helper-classes-floats

57
Stefan

essayez quelque chose comme ça

<a href = "link_to_img.html" class = 'btn btn-success pull-right'>Grab it!</a>
7
trajce

Utilise justification-content-end

Dans la documentation de démarrage, il est dit:

Bootstrap 3 utilisait .navbar-left et .navbar-right pour l'alignement de la barre de navigation.

Bootstrap 4 utilise les différentes classes d’aide.

(Partie alignement) https://www.quackit.com/bootstrap/bootstrap_4/tutorial/bootstrap_navbars.cfm

et ici plus d’informations sur le nouvel alignement https://www.quackit.com/css/flexbox/tutorial/flexbox_alignment.cfm

<!DOCTYPE html>
<html>

<head>
<link rel="stylesheet" href="style.css">
<script src="script.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/css/bootstrap.min.css" integrity="sha384-rwoIResjU2yc3z8GV/NPeZWAv56rSmLldC3R/AZzGRnGxQQKnKkoFVhFQhNUwEyJ" crossorigin="anonymous">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha.6/js/bootstrap.min.js" integrity="sha384-vBWWzlZJ8ea9aCX4pEW3rVHjgjt7zpkNpZk+02D9phzyeVkE+jo0ieGizqPLForn" crossorigin="anonymous"></script>
</head>

<body>

  <style>
    .wrapper {
      display: flex;
      align-items: center;
      background-color: beige;
      height: 100vh;
    }

    .wrapper > div {
      padding: 20px;
      font-size: 4vw;
      color: white;
    }

    .red {
      background: orangered;
    }

    .green {
      background: yellowgreen;
    }

    .blue {
      background: steelblue;
    }

    body {
      margin: 0;
    }
  </style>
  <div class="wrapper justify-content-end">
    <div class="red">1</div>
    <div class="green">2</div>
    <div class="blue">3</div>
  </div>
</body>

</html>

https://plnkr.co/edit/LtfW2fj9f3E9Ehj1M8jN?p=catalogue

0
Javier