How to add justified button group in Bootstrap

1 Answer

0 votes
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" 
        href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
</head>
<body>

<div class="container">
  <h2>Bootstrap Justified Button Group</h2>
  <div class="btn-group btn-group-justified">
    <a href="#" class="btn btn-primary">PHP</a>
    <a href="#" class="btn btn-primary">JavaScript</a>
    <a href="#" class="btn btn-primary">C</a>
  </div>
</div>

</body>
</html>

 



answered Jul 11, 2017 by avibootz

Related questions

1 answer 290 views
1 answer 251 views
251 views asked Jul 11, 2017 by avibootz
1 answer 170 views
170 views asked Jul 11, 2017 by avibootz
1 answer 179 views
1 answer 186 views
...