Bootstrap 样式
Well 元素是 <div> 中的容器,可使内容在页面上呈现为下沉式或凹入式效果。要创建 Well 元素,只需要使用包含 .well 类的 <div> 包裹希望显示在 Well 元素中的内容。
你可以尝试运行下列代码来实现 Bootstrap 中的 Well 类:
示例
<!DOCTYPE html> <html> <head> <title>Bootstrap Example</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">This is demo text!</div> </body> </html>
广告