Prev Demo
Bootstrap Well Height And Width
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html lang="en"> <head> <title>Bootstrap Well</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.0/jquery.min.js"></script> <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> <style> .well { height: 150px; width: 50%; color: black; background-color: green; } </style> </head> <body> <h2>Well height and width</h2> <div class="well"> <div> <p>Really long text...</p> </div> </div> </body> </html>
Note: We DO NOT save your trial code in our database.
Output