Stylish CSS Table Design #2
In this tutorial, we are using the simple CSS and HTML for designing the stylish table. Take a look at following table design. HTML Code : Consider the following code -
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<table> <tbody> <tr> <th>One</th> <th>Two</th> <th>Three</th> </tr> <tr> <td>Apples</td> <td>Carrots</td> <td>Steak</td> </tr> <tr> <td>Oranges</td> <td>Potato</td> <td>Pork</td> </tr> <tr> <td>Pears</td> <td>Peas</td> <td>Chicken</td> </tr> </tbody> </table> |
We have just created the simple table which is basic HTML version of the table. Now its time to add some CSS to(…)