|
一个简单的例子引导使用well class。 一个灰色背景,创建填充和圆角。
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
- <meta name="description" content="Bootstrap example for Tizen"/>
-
- <title>Bootstrap example for Tizen</title>
-
- <link rel="stylesheet" href="css/bootstrap.min.css">
- <script src="js/jquery-2.1.4.min.js"></script>
- <script src="js/bootstrap.min.js"></script>
- </head>
- <body>
- <div class="well well-sm">This is a small Well</div>
- <div class="well">This is a normal Well</div>
- <div class="well well-lg">This is a large Well</div>
- <script>
- </script>
- </body>
- </html>
复制代码 |
|