• 测开之路一百零七:bootstrap排版


    引入bootstrap和jquery

    标题

    对齐

    正文强调

    引言

    <!DOCTYPE html>
    <html lang="en">
    <head>
    <meta charset="UTF-8">
    <title>bootstrap布局</title>
    <!--网页源数据跨平台兼容做一些说明-->
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <!--跨屏自适应说明-->
    <meta name="viewport" content="width=device-width, initial-scale=1">

    <link href="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet">
    <script src="https://cdn.bootcss.com/jquery/2.2.4/jquery.min.js"></script>
    <script src="https://cdn.bootcss.com/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
    </head>
    <body>
    <h1>bootstrap排版</h1>

    <!--标题-->

    <div class="container">
    <div class="row">
    <!--标题-->
    <div class="page-header">
    <h1>这是bootstrap标题</h1>
    </div>
    </div>
    <div class="row">
    <!--small:二级标题-->
    <h1>原本的h1标题<small>加了small标签的h1标题</small></h1>
    <h2>原本的h2标题<small>加了small标签的h2标题</small></h2>
    <h3>原本的h3标题<small>加了small标签的h3标题</small></h3>
    <h4>原本的h4标题<small>加了small标签的h4标题</small></h4>
    <h5>原本的h5标题<small>加了small标签的h5标题</small></h5>
    <h6>原本的h6标题<small>加了small标签的h6标题</small></h6>
    </div>
    <div class="row">
    <!--正文突出显示:字号变大,加粗-->
    <p>这是普通段落</p>
    <p class="lead">这是class=lead的段落</p>
    </div>
    </div>


    <!--对齐-->
    <div class="container">
    <div class="row">
    <p class="text-left">左对齐</p>
    <p class="text-justify">两边对齐 Lorem ipsum dolor sit amet, consectetur adipisicing elit. Ab, adipisci amet blanditiis
    consequuntur deleniti dolore eum fugit in inventore molestias non, odit placeat quaerat qui reiciendis
    repellat rerum saepe temporibus.</p>
    <p class="text-right">右对齐</p>
    <p class="text-center">中间对齐</p>

    </div>
    </div>


    <!--正文强调-->
    <div class="container">
    <div class="row">
    <p class="text-muted">次要:text-muted</p>
    <p class="text-primary">主要:text-primary</p>
    <p class="text-success">成功:text-success</p>
    <p class="text-info">信息:ext-info</p>
    <p class="text-warning">警告:text-warning</p>
    <p class="text-danger">危险:text-danger</p>
    </div>
    </div>


    <!--引言:blockquote-->
    <div class="container">
    <div class="row">
    <blockquote>
    <p>内容XXXXX</p>
    <small>--摘自XXX</small>
    </blockquote>
    </div>
    </div>
    </body>
    </html>
  • 相关阅读:
    远程桌面 终端服务器超出最大连接数的解决方法
    html a标签中调用js中的方法的方法
    英文励志歌曲经典珍藏
    远程桌面 习惯性注销连接,出事了
    小幽默
    MySQL用户权限
    MyBatis Like 模糊查询
    MVC3控制器方法获取Form数据方法
    MVC 3 Razor中的@helper 语法
    MVC3实现多个按钮提交
  • 原文地址:https://www.cnblogs.com/zhongyehai/p/11429493.html
Copyright © 2020-2023  润新知