well-lg - HTML CSS Bootstrap Class List

HTML CSS examples for Bootstrap Class List:well-lg

Description

well-lg

Demo Code

ResultView the demo in separate window

<!DOCTYPE html>
<html>
 <head> 
  <meta charset="utf-8"> 
  <meta http-equiv="X-UA-Compatible" content="IE=edge"> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <title>Example of Bootstrap 3 Wells</title> 
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> 
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css"> 
 </head> <!-- ww w.  ja  va  2s  .  co  m-->
 <body> 
  <div> 
   <div class="well">
    Look, I'm in a well!
   </div> 
   <div class="well well-lg">
    Look, I'm in a large well!
   </div> 
   <div class="well well-sm">
    Look, I'm in a small well!
   </div> 
  </div>   
 </body>
</html>

Related Tutorials