css-ui-table
v1.0.8
Published
Simple table.
Downloads
1
Readme
CSS UI - Table
Simple table styles.
Installation
npm install --save css-ui-table
Demo
- https://css-ui.github.io/table/
Quick start
CSS dependencies.
<link rel="stylesheet" href="path/to/normalize.css">
<link rel="stylesheet" href="path/to/open-sans.css">
<link rel="stylesheet" href="path/to/cssui.css">
CSS table.
<link rel="stylesheet" href="path/to/style.tables.css">
Use Open Sans fotns.
font-family: 'Open Sans', sans-serif;
Table html.
Class: default
, primary
, success
and warning
<table class="full width">
<tr class="default">
<th>#</th>
<th>Username</th>
<th>Email</th>
</tr>
<tr class="default">
<td>1</td>
<td>Root</td>
<td>[email protected]</td>
</tr>
<tr class="default">
<td>2</td>
<td>Admin</td>
<td>[email protected]</td>
</tr>
<tr class="default">
<td>3</td>
<td>User</td>
<td>[email protected]</td>
</tr>
</table>
Enjoy table.