码迷,mamicode.com
首页 > 其他好文 > 详细

Bootstrap table

时间:2015-10-01 21:49:59      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:

Bootstrap table:

<!DOCTYPE html>
<html>

<head>
    <title></title>
    <meta charset="utf-8">
    <link rel="stylesheet" type="text/css" href="dist/css/bootstrap.css">
</head>

<body>
    <p class="btn-primary">.table, .table-striped, .table-hover, .table-condensed, .table-bordered, .table-responsive </p>
    <table class="table">
        <tbody>
            <thead>
                <th>this is just table class</th>
            </thead>
            <tr>
                <td>this is row1, col1</td>
            </tr>
            <tr>
                <td>row2, col1</td>
            </tr>
            <tr>
                <td>row3, col1</td>
            </tr>
        </tbody>
    </table>
    <table class="table table-striped">
        <tbody>
            <thead>
                <th>this is table and table-striped class</th>
            </thead>
            <tr>
                <td>this is row1, col1</td>
            </tr>
            <tr>
                <td>row2, col1</td>
            </tr>
            <tr>
                <td>row3, col1</td>
            </tr>
        </tbody>
    </table>
    <table class="table table-bordered">
        <tbody>
            <thead>
                <th>this is table table-bordered class</th>
            </thead>
            <tr>
                <td>this is row1, col1</td>
            </tr>
            <tr>
                <td>row2, col1</td>
            </tr>
            <tr>
                <td>row3, col1</td>
            </tr>
        </tbody>
    </table>
    <table class="table table-condensed">
        <tbody>
            <thead>
                <th>this is table table-condensed class</th>
            </thead>
            <tr>
                <td>this is row1, col1</td>
            </tr>
            <tr>
                <td>row2, col1</td>
            </tr>
            <tr>
                <td>row3, col1</td>
            </tr>
        </tbody>
    </table>
    <table class="table table-hover">
        <tbody>
            <thead>
                <th>this is table table-hover class</th>
            </thead>
            <tr>
                <td>this is row1, col1</td>
            </tr>
            <tr>
                <td>row2, col1</td>
            </tr>
            <tr>
                <td>row3, col1</td>
            </tr>
        </tbody>
    </table>
    <div class="table-responsive">

        <table class="table">
            <tbody>
                <thead>
                    <th>this is table-responsive class</th>
                </thead>
                <tr>
                    <td>this is row1, col1</td>
                </tr>
                <tr>
                    <td>row2, col1</td>
                </tr>
                <tr>
                    <td>row3, col1</td>
                </tr>
            </tbody>
        </table>
    </div>


    <script type="text/javascript" src="dist/jQuery/jquery-1.11.3.js"></script>
    <script type="text/javascript" src="dist/js/bootstrap.js"></script>
</body>

</html>

 

Bootstrap table

标签:

原文地址:http://www.cnblogs.com/stono/p/4851571.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!