2.2.0 • Published 7 years ago

niduscss-components-table v2.2.0

Weekly downloads
1
License
MIT
Repository
github
Last release
7 years ago

niduscss-components-table

npm

Styles for tables elements.

Installation

$ npm install niduscss-components-table

Usage

Import styles:

styles.css:

/* Components
   ========================================================================== */
@import "niduscss-components-table";

/* Other styles */

Use in html files

<div class="Table">
  <div class="Table-header">
    <span class="Table-title">Title</span>
  </div>
  <div class="Table-content">
    <table>
      <thead>
        <tr>
          <th>Col1</th>
          <th>Col2</th>
          <th>Col3</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <td>Content 11</td>
          <td>Content 12</td>
          <td>Content 13</td>
        </tr>
        <tr>
          <td>Content 21</td>
          <td>Content 22</td>
          <td>Content 23</td>
        </tr>
      </tbody>
    </table>
  </div>
  <div class="Table-footer">Footer</div>
</div>

Changelog