引導井
Well 是一種會造成內容凹陷顯示或插圖效果的容器 <div>。為了創造 Well,只需要簡單地把內容放在有 class .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 的尺寸大小。這兩個類別是與 .well 類別結合使用的。這兩個類別會影響內邊距(padding),根據使用的類別,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-lg">您好,我在大的 Well 中!</div> <div class="well well-sm">您好,我在小的 Well 中!</div> </body> </html>
執行實例 »點擊 "執行實例" 按鈕查看線上實例