<!DOCTYPE html> <html> <head> <title>Bootstrap 實例 - 默認的 Well</title> <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <script src="/scripts/jquery.min.js"></script> <script src="/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class="well">您好,我在 Well 中!</div> </body> </html>
結果以下所示:css
您可使用可選類 well-lg 或 well-sm 來改變 Well 的尺寸大小。這兩個類是與 .well 類結合使用的。這兩個類會影響內邊距(padding),根據使用的類,Well 會顯示得更大或者更小。html
<!DOCTYPE html> <html> <head> <title>Bootstrap 實例 - Well 的尺寸大小</title> <link href="/bootstrap/css/bootstrap.min.css" rel="stylesheet"> <script src="/scripts/jquery.min.js"></script> <script src="/bootstrap/js/bootstrap.min.js"></script> </head> <body> <div class="well well-lg">您好,我在大的 Well 中!</div> <div class="well well-sm">您好,我在小的 Well 中!</div> </body> </html>
結果以下所示:jquery