So why would you want to put the content of a web page into a table? The reason is that it is the simplest and most effective way to organize a web page. For example, how would you make two columns of text on a web page if you did not use a table? Think about it. Unless you are an advnaced HTML'er and know how to use layers, you can's do it. What you would do is create a table with two columns and then place your text in each column. Here is the code that you would need to accomplish this:
Column 1 Text Here | Column 2 Text Here |
This table would display like this:
Column 1 Text Here Column 2 Text Here
The tags work just like any other HTML tag. Anytime you open a table with
Be sure to note that your tags must always be nested inside of your tags and your tags must always be nested inside of your
Ok, so now you understand how to make a simple table. Now, you want to know how to add attributes to. You can add various attributes to your tables with some very simple code. Here are some examples:
To specify a length, you could add this to your code:
- sets the length as a percentage of the entire page
- sets the length as a percentage of the entire table | - sets the length in pixels To specify a table border thickness and color, you could add this to your code: To add a background color, you could add this to your code:
|
No comments:
Post a Comment