Sunday, November 4, 2012

HTML5 Tables

html5 table

Absolute Basic Table markup:
http://perishablepress.com/html5-table-template/#html5table


Absolute Basic Table Template

Because, sometimes it’s all you need. Thanks to Helen for the idea.
<table>
 <tr>
  <td>Name</td>
  <td>Side</td>
  <td>Role</td>
 </tr>
 <tr>
  <td>Obi Wan Kenobi</td>
  <td>Light</td>
  <td>Jedi</td>
 </tr>
 <tr>
  <td>Greedo</td>
  <td>South</td>
  <td>Scumbag</td>
 </tr>
</table>
Thanks to the amazing powers of CSS3, even the most basic table can be transformed into brilliant works of art, displaying data as clearly and succinctly as possible. Nice :)






html table
http://www.w3schools.com/tags/tag_table.asp
alignleft
center
right
Not supported in HTML5. Deprecated in HTML 4.01.Specifies the alignment of a table according to surrounding text
bgcolorrgb(x,x,x)
#xxxxxx
colorname
Not supported in HTML5. Deprecated in HTML 4.01.Spec


http://www.w3schools.com/html/html_tables.asp




No comments:

Post a Comment