其他分享
首页 > 其他分享> > 使用BootStrap

使用BootStrap

作者:互联网

1.BootStrap的引入
 

 cnpm install bootstrap@3
  cnpm install jquery

  <link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.css">
  <script src="node_modules/jquery/dist/jquery.js"></script>
  <script src="node_modules/bootstrap/dist/js/bootstrap.js"></script> 

2.流体容器

container-fluid

3.固定容器

container

4.珊格布局(珊格系统)

 BootStrap默认分一行为12列,列名上的YY就是占据多少列
  现在有一行,行里有两列,一列占据10份,一列占据2份。
  container
  row
  col-lg-10
  col-lg-2    

标签:珊格,lg,container,cnpm,BootStrap,install,使用
来源: https://www.cnblogs.com/521lzl/p/15810555.html