How to add rounded border around an element with padding and gray background in Bootstrap

2 Answers

0 votes
<!DOCTYPE html>
<html lang="en">
<head>
    <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">
  <div class="well">class="well"</div>
</div>

  
</body>
</html>

 



answered Jul 9, 2017 by avibootz
0 votes
<!DOCTYPE html>
<html lang="en">
<head>
    <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">
   <div class="well">Normal Well</div>
   <div class="well well-sm">Small Well</div>
   <div class="well well-lg">Large Well</div>
</div>

  
</body>
</html>

 



answered Jul 9, 2017 by avibootz
...