Bootstrap Tutorial - Create Large Disabled Buttons in various styles








The following code shows how to create Large Disabled Buttons in various styles.

Example

<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
  href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
  src="http://code.jquery.com/jquery.min.js"></script>
<script
  src="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/js/bootstrap.min.js"></script>
<style type="text/css">
.bs-example {<!--from  w  w  w .ja  v  a  2s.  co  m-->
  margin: 20px;
}
</style>
</head>
<body>
  <div class="bs-example">
    <a href="#" class="btn btn-default btn-lg disabled">Default</a> 
    <a href="#" class="btn btn-primary btn-lg disabled">Primary</a> 
    <a href="#" class="btn btn-info btn-lg disabled">Info</a> 
    <a href="#" class="btn btn-success btn-lg disabled">Success</a> 
    <a href="#" class="btn btn-warning btn-lg disabled">Warning</a> 
    <a href="#" class="btn btn-danger btn-lg disabled">Danger</a>
  </div>
</body>
</html>

Click to view the demo