admin 发表于 2021-4-5 22:04:31

BS5安装与测试

一.BS5官方
https://getbootstrap.com/

二.BS5下载
https://github.com/twbs/bootstrap/releases/download/v5.0.0-beta3/bootstrap-5.0.0-beta3-dist.zip

三.BS5使用
bs5
|--public
        |--bs
        |--js
        |--css
        |--img
|--index.html

四.index.html代码
<!doctype html>
<html lang="en">
<head>
        <meta charset="UTF-8">
        <title>bs5</title>
        <link rel="stylesheet" href="public/bs/css/bootstrap.min.css">
        <script src="public/bs/js/bootstrap.min.js"></script>
</head>
<body>
        <div class="container mt-3">
                <div class="bg-dark text-warning p-3">
                        my name is bs5,i contains flex and sass.
                </div>
        </div>
</body>
</html>









页: [1]
查看完整版本: BS5安装与测试