ブートストラップウェル
Well は、コンテンツに沈んだ表示やイラスト効果を引き起こすコンテナ
です。 Well を作成するには、クラス .well を使用してコンテンツを <div> 内に配置するだけです。次の例は、デフォルトの Well を示しています:
インスタンスの実行»
インスタンスの実行 »
インスタンス
<!DOCTYPE html> <html> <head> <title>Bootstrap 实例 - 默认的 Well</title> <link href="http://libs.baidu.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> </head> <body> <div class="well">您好,我在 Well 中!</div> </body> </html>
インスタンスの実行»
「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します
サイズ
オプションのクラスを使用できますwell- lg または well-sm で Well のサイズを変更します。これら 2 つのクラスは、.well クラスと組み合わせて使用されます。これら 2 つのクラスはパディングに影響を与え、使用するクラスに応じてウェルが大きくなったり小さく見えたりします。
インスタンス
<!DOCTYPE html> <html> <head> <title>Bootstrap 实例 - Well 的尺寸大小</title> <link href="http://libs.baidu.com/bootstrap/3.0.3/css/bootstrap.min.css" rel="stylesheet"> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <script src="http://libs.baidu.com/bootstrap/3.0.3/js/bootstrap.min.js"></script> </head> <body> <div class="well well-lg">您好,我在大的 Well 中!</div> <div class="well well-sm">您好,我在小的 Well 中!</div> </body> </html>
インスタンスの実行 »
「インスタンスの実行」ボタンをクリックしてオンラインインスタンスを表示します