Bootstrap Tutorial - Create multiple button groups








The following code shows how to create multiple button groups.

Example

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-git2.js'></script>
<link rel="stylesheet" type="text/css"
  href="http://getbootstrap.com/assets/css/docs.css">
<link rel="stylesheet" type="text/css"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/css/bootstrap.min.css">
<script type='text/javascript'
  src="http://netdna.bootstrapcdn.com/bootstrap/3.0.0-rc1/js/bootstrap.min.js"></script>
</head><!--from  w w w.  j av  a  2s. com-->
<body style='margin:30px'>
  <h3 id="btn-groups-toolbar">Multiple button groups</h3>
  <div class="btn-group">
    <button class="btn btn-default" type="button">1</button>
    <button class="btn btn-default" type="button">2</button>
    <button class="btn btn-default" type="button">3</button>
    <button class="btn btn-default" type="button">4</button>
  </div>
</body>
</html>

Click to view the demo