Web Development

Would you like to react to this message? Create an account in a few clicks or log in to continue.

Forum

Latest topics

» Cinzia Roccaforte The Hyena Deleted Scene
Table Lecture EmptySun Jun 08, 2014 10:46 am by graharys

» Ymdha@????@????????-?????????-??????????
Table Lecture EmptySun Jun 08, 2014 12:58 am by graharys

» Gost Rape In Peprronity
Table Lecture EmptySat Jun 07, 2014 7:36 am by graharys

» CyberLink PowerDVD 10 Ultra Retail RePack
Table Lecture EmptyFri Jun 06, 2014 11:36 am by graharys

» Stardock Icon Packager 5.0
Table Lecture EmptyFri May 30, 2014 2:36 pm by graharys

» The Fall Trilogy Chapter 1 - Separation [BG]
Table Lecture EmptyFri May 30, 2014 1:52 am by graharys

» Full Speed Internet Broadband Connection 2 2
Table Lecture EmptyThu May 29, 2014 8:21 am by graharys

» Free-tivo-to-wmp-video-converter-lite-1.1.5
Table Lecture EmptyWed May 28, 2014 1:48 pm by graharys

» Flatout 2 PC Game
Table Lecture EmptyWed May 28, 2014 12:05 am by graharys


2 posters

    Table Lecture

    Nikko Roque
    Nikko Roque
    Administrator
    Administrator


    Posts : 17
    Join date : 2009-08-13
    Age : 34
    Location : Balagtas, Bulacan

    Table Lecture Empty Table Lecture

    Post  Nikko Roque Fri Sep 04, 2009 11:21 am

    TABLES
    -Table are advanced HTML construct that allows you to arrange text, images and other HTML content into rows and columns with or without borders.
    Parts of Table


    Table Element
    -to create a table in HTML, use the <table>…</table> tags, which will contain the code for a caption and then the contents of the table itself.
    -the table element has four sub-elements:
    *Table Row <TR>…</TR>
    *Table Header <TH>…..</TH>
    *Table Data <TD>…</TD>
    *Table <caption>….</caption>
    Example:
    <table>
    <tr>
    <th>Heading</th>
    <td>Data</td>
    <td>Data</td>
    <td>Data</td>
    </tr>
    </table>
    Empty Cells
    -cell that has nothing in it
    Example:
    <table>
    <caption>Web Programming</caption>
    <tr>

    Table Allignment
    *the content alignment attribute of the <table> is not well supported and you will want to use <center> to control the position of your table in your document.
    Cell Allignment
    -Horizontal alignment(alignment attribute) defines whether the data within a cell is aligned with the left cell margin, (left), the right cell margin (right), on centered within the two (center).
    -Vertical alignment (Valign attribute)
    -The top of the cell(top)
    -flush with the bottom of the cell (bottom)
    -vertical centered within the cell(middle).

    Cell Spanning
    -A spanning cell is a cell that occupies more than one row or column in a table.
    -to create a cell that spans multiple rows or columns, you add the rowspan or colspan attribute to the <TH> or <TD> tags, along with the number of rows or columns you want the cell to span.
    Example:
    <table>
    <tr>
    <th colspan=2>gender</th>
    </tr>
    <tr>
    <td>15</td>
    <td>23</td>
    </tr>
    <table>

    Table Width
    *The table width corresponds to the width attribute of the table element
    *the width attribute can also be used of individual cell (</th> or <td>) to indicate the width of individual columns.
    Color
    BGCOLOR of a table, a row or a cell inside a row can be used in <table>, <tr><th> or <td> tags.
    BORDER-the lines that form the boundary of each table cell when the file is displayed in a browser.

    Table Properties
    Border Color-the color of the border around the table
    Border Color Light-light color used to outline two sides of a cell or the table.
    Border Color Dark-dark color used to outline two sides of a cell or the table.
    Cell Padding-the space between the cell border and the cell contents and is specified in pixels.
    Cell Spacing-represents the space between cells and is specified in pixels.




    SPECIAL THANKS TO OUR SOURCE:ATE RUBY
    avatar
    nataliewebb01


    Posts : 1
    Join date : 2009-11-18

    Table Lecture Empty Re: Table Lecture

    Post  nataliewebb01 Wed Nov 18, 2009 6:45 pm

    i like the content published on HTML , there you have written all the tags which should need to design the table in HTML . . ; web 2.0 development company thanks for it

      Similar topics

      -

      Current date/time is Thu May 09, 2024 5:59 am