Today's lesson is one How to create Simple HTML Table. First i'm going to explain what each tag is and what they do.
<Table> Element This element is necessary to indicate to the web browser that you wish to arrange content in a tabular fashion.
This element can also be use to place graphic on a page, to format text and input boxes just like DsiPaint login system.
Table Row <tr> Element This element defines the table cell or each individual space for your content within a row.
Table Header <th> Now i know lot of us does not use this following element but it useful for create a table.
This element makes your contents between the tag as Table head title for each colum.
Scope in th element Some of you might have heard of this attribute. This is used in the th element to tell the screen reader that th content is the title for a column or a row.
We only used this in a th element
thead,tbody, and tfoot element This is used in a complex table. These define the table's header body and footer respectively; however using then can not only structure the content for the coder's sake, but also browser and other devices.
Colspan This attribute specifies how many cell colums of the table cell should span.
Align This is use to put cell data to left, right or center alignment.
But we are not going to go over them. We are going to stick with the basics for today.
Now that we learn some of the element's for creating a table we going to get it the good stuffs CODING!!!. This table is going to have example of total members from Dsipaint and DsiRealm.
First is <table> element <table border="3px">
Next we going to uses <thead> element <thead>
Third we need to code th element with attribute scope in th element.
<tr>
<th scope="col">Site</th>
<th scope="col">Members</th>
</tr>
So far we should have this
<table border="3px">
<thead>
<tr>
<th scope="col">Site</th>
<th scope="col">Members</th>
</tr>
</thead>
Moving on next we need to code <tfoot> element with our total score in the <tfoot> element. example,
Tables should be a bar minimum on pages - especially tables within tables - because their layout does not adjust well between screen sizes. Also, browser rendering engines put the slowest priority and most memory usage to tables, due to the complex nature. They are a great tool, but they should only really be used to display what one would consider "tabular data". I've seen plenty of websites that use them for frames, columns, and other layout elements.
Yes, for tabular form elements. The login form is a good example. The left column has the right-aligned labels, and the right column has the left-aligned fields.
lilwayne1556
27 Feb 2013 21:57
In reply to HullBreach
The only thing I use tables for is on the homepage to show the icons but I might not even do that since it really isn't useful unless I want a border around each one. Before I barely knew about css like a year ago lol so all I used was tablets to organize stuff, it was pretty bad. Anyways I get what you're saying and sometimes they are a good thing and a bad thing.
M.J kInG
27 Feb 2013 23:35
In reply to lilwayne1556
Table can be useful for some content but a bad thing about it is the layout adjusting as hullbreach stated.
lilwayne1556
27 Feb 2013 23:36
In reply to M.J kInG
Yeah that is why I stopped using it except for like 1 thing because you can't really move things around very freely
M.J kInG
27 Feb 2013 23:40
In reply to lilwayne1556
I uses position:absolute to adjust the table which does the trick.
lilwayne1556
27 Feb 2013 23:44
In reply to M.J kInG
That works I guess but tables shouldn't be used all the time anyways