前端

Bootstrap内容排版(图、文、代码、表格颜色、边框)

2022-03-21  本文已影响0人  马佳乐

可使文章更加清晰和美观

标题类

        <h1>标题h1</h1>
        <h2>标题h2</h2>
        <h3>标题h3</h3>
        <h4>标题h4</h4>
        <h5>标题h5</h5>
        <h6>标题h6</h6>

        <div class="h2">标题h2</div>
        <div class="h1">index<small class="text-muted">.html</small></div>

        <div class="display-1">display-1</div>
        <div class="display-2">display-2</div>
        <div class="display-3">display-3</div>
        <div class="display-4">display-4</div>

文本类

        <p class="lead">我是p标签的文本(lead)</p>
        <p>我是<mark>p标签(mark)</mark>的文本</p>
        <p>我是<del>p标签(del)</del>的文本</p>
        <p>我是<ins>p标签(ins)</ins>的文本</p>
        <p>我是<u>p标签(u)</u>的文本</p>
        <p>我是<strong>p标签(strong)</strong>的文本</p>
        <p>我是<em>p标签(em)</em>的文本</p>
        <p><abbr title="这是一个提示">我是p标签的文本(有提示)</abbr></p>
        <blockquote class="blockquote">
            <p>我是p标签的文本(blockquote)</p>
            <footer class="blockquote-footer text-right">
                index.html
            </footer>
        </blockquote>

列表类

        <ul class="list-unstyled">
            <li>列表1</li>
            <li>列表2</li>
            <ul class="list-unstyled">
                <li>列表2.1</li>
                <li>列表2.2</li>
            </ul>
            <li>列表3</li>
            <li>列表4</li>
        </ul>

        <ul class="list-inline">
            <li class="list-inline-item">列表1</li>
            <li class="list-inline-item">列表2</li>
            <li class="list-inline-item">列表3</li>
            <li class="list-inline-item">列表4</li>
        </ul>

        <div class="container">
            <dl class="row">
                <dt class="aa col-sm-3">dt</dt>
                <dd class="aa col-sm-9">dd</dd>
            </dl>
            <dl class="row">
                <dt class="aa col-sm-3">dt</dt>
                <dd class="aa col-sm-9 text-truncate">dd很多内容很多内容很多内容很多内容很多内容很多内容很多内容很多内容很多内容</dd>
            </dl>
            <dl class="row">
                <dt class="aa col-sm-3">dt</dt>
                <dd class="aa col-sm-9">dd</dd>
            </dl>
        </div>

代码类样式

<pre class="pre-scrollable" style="width: 500px;height: 200px;">
    <code>
        var <var>a</var>=1+2;
        function demo(){
            alert("a="+a);
        }
        
        <kbd>Ctrl</kbd>+<kbd>Shift</kbd>+<kbd>A</kbd>
        <samp>这是一个实例</samp>
        
        <var>var a=1+2;</var>
        function demo(){
            alert("a="+a);
        }
        
        var a=1+2;
        function demo(){
            alert("a="+a);
        }
        
    </code>
</pre>

图文类样式

<!--<img src="img/1.jpg" style="max-width: 100%;height: auto;" />--><!--响应式同下-->
<!--<img src="img/1.jpg" class="img-fluid img-thumbnail float-right" />-->

<!--<img src="img/1.jpg" class="mx-auto d-block" />居中,同下-->
<!--<div class="text-center">
    <img src="img/1.jpg" />
</div>-->
<picture>
    <!--当屏幕宽度大于等于600px时,显示1.jpg,当屏幕宽度小于600px时,显示2.jpg-->
    <source srcset="img/1.jpg" media="(min-width:600px)">
    <img src="img/2.jpg" />
</picture>

<!--图文组合-->
<figure class="figure">
    <img src="img/1.jpg" class="figure-img" />
    <figcaption class="figure-caption text-center">文字居中</figcaption>
</figure>

表格样式

<table class="table table-dark table-striped table-bordered table-hover table-sm table-responsive-sm">
    <thead class="thead-light">
        <tr>
            <th>ID</th>
            <th>姓名</th>
            <th>年龄</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td class="table-success">1</td>
            <td>张三</td>
            <td>20</td>
        </tr>
        <tr>
            <td>2</td>
            <td>李四</td>
            <td>20</td>
        </tr>
        <tr>
            <td>3</td>
            <td>王五</td>
            <td>20</td>
        </tr>       
    </tbody>
</table>

边框样式

<div style="width: 100px;height: 100px;background-color: #EFEFEF;margin: 10px;float: left;" class=" border border-success"></div>
<div style="width: 100px;height: 100px;background-color: #EFEFEF;margin: 10px;float: left;;" class="border border-danger border-bottom-0"></div>
<div style="width: 100px;height: 100px;background-color: #EFEFEF;margin: 10px;float: left;" class="border rounded"></div>
<div style="width: 100px;height: 100px;background-color: #EFEFEF;margin: 10px;float: left;" class="border rounded-bottom"></div>
<div style="width: 200px;height: 100px;background-color: #EFEFEF;margin: 10px;float: left;" class="border rounded-pill"></div>
上一篇下一篇

猜你喜欢

热点阅读