天天看點

bootstrap表格樣式

<!DOCTYPE html><html>
    <head>
        <meta charset="utf-8" />
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <title>我是中國人title>

         新 Bootstrap 核心 CSS 檔案 -->
        <link href="css/bootstrap.min.css" rel="stylesheet">

         最新的 Bootstrap 核心 JavaScript 檔案 -->
        <script src="js/bootstrap.min.js">script>

        <script src="https://cdn.staticfile.org/popper.js/1.15.0/umd/popper.min.js">script>
    head>
    <body>
        <table border="" cellspacing="" cellpadding="" class="table table-bordered table-hover table-striped table-condensed">
            <tr>
                <th>名稱th>
                <th>數量th>
                <th>單價th>
            tr>
            <tr>
                <td>玉米td>
                <td>10td>
                <td>3td>
            tr>
            <tr>
                <td>大豆td>
                <td>20td>
                <td>60td>
            tr>
        table>
    body>html>           
bootstrap表格樣式

table:表格的基類,其他樣式都基于table

table-bordered:給表格加外邊框

繼續閱讀