HTML--表格1

<!DOCTYPE html>
<html>
    <head>
    <title>表格</title>
    <link rel="stylesheet" href="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/css/bootstrap.min.css">  
   <script src="https://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
   <script src="https://cdn.staticfile.org/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
   </head>
   <body>
    <table class="table-bordered table-striped">
        <thead>
            <tr >
                <th>Column1</th>
                <th>Column2</th>
                <th>Column3</th>
            </tr>
        </thead>
        <tbody>
            <tr class="danger">
                <td>Row1,Column1</td>
                <td>Row1,Column2</td>
                <td>Row1,Column3</td>
            </tr>
            <tr class="danger">
                <td>Row2,Column1</td>
                <td>Row2,Column2</td>
                <td>Row2,Column3</td>
            </tr>
            <tr class="danger">
                <td>Row3,Column1</td>
                <td>Row3,Column2</td>
                <td>Row3,Column3</td>
            </tr>
            <tr class="danger">
                <td>Row4,Column1</td>
                <td>Row4,Column2</td>
                <td>Row4,Column3</td>
            </tr>
            <tr class="danger"> 
                <td>Row5,Column1</td>
                <td>Row5,Column2</td>
                <td>Row5,Column3</td>
            </tr>
        </tbody>
    </table>
   </body>
</html>

 

posted @ 2023-03-18 19:50  fushuxuan1  阅读(14)  评论(0)    收藏  举报