Bootstrap Well
0 5013
In Bootstrap .well class adds a rounded border around an element with a gray background color and some padding. For rounded border you can use this class.
It's responsive and auto adjust in div.
Example:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!- Bootstrap css file ->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css">
</head>
<body>
<div class="container">
<h1> Bootstrap well </h1>
<div class="well">
Welcome to Coding Tag - Learn HTML Tutorials, CSS Tutorials, JS Tutorials, Bootstrap Tutorials, PHP Tutorials, Mobile Responsive Tips, Projects for IT and CS Students. Free Templates Download.
</div>
</div>
<!- Bootstrap js file ->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
</body>
</html>
Result:
Share:
Comments
Waiting for your comments