侧边栏壁纸
博主头像
流苏小筑 博主等级

行动起来,活在当下

  • 累计撰写 139 篇文章
  • 累计创建 57 个标签
  • 累计收到 9 条评论

目 录CONTENT

文章目录

Bootstrap的安装和使用

Administrator
2021-04-06 / 0 评论 / 0 点赞 / 2 阅读 / 0 字

Bootstrap的安装和使用

软件简介

Bootstrap 是快速开发 Web 应用程序的前端工具包。它是一个 CSS,HTML 和 JS 的集合,它使用了最新的浏览器技术,给你的 Web 开发提供了时尚的版式,表单,buttons,表格,网格系统等等。
文档地址:https://bootstrap.p2hp.com/

安装

  • 克隆仓库: git clone https://github.com/twbs/bootstrap.git
  • 使用 npm 安装: npm install bootstrap@next
  • 使用 yarn 安装: yarn add bootstrap@next
  • 使用 Composer 安装: composer require twbs/bootstrap:5.0.0-beta2
  • 使用 NuGet 安装: CSS: Install-Package bootstrap Sass: Install-Package bootstrap.sass

使用

  • 下载完成后 拷贝dist/css中的bootstrap.min.css到项目css中
  • 下载jquery.js
  • 在项目中引入使用
0

评论区