Skip to content
  • Blog (1)
  • About Us
  • Tags
  • Donations
1SMARTchicken - Code Made Easy
  • Tutorials (190)
  • Reference (2172)
  • Snippets (69)

Tag: Table

1SMARTchicken - Code Made Easy

Tag: Table

  • Tutorials (190)
  • Reference (2172)
  • Snippets (69)
  • Blog (1)
  • About Us
  • Tags
  • Donations
1SMARTchicken - Code Made Easy
  • Tutorials (190)
  • Reference (2172)
  • Snippets (69)
1SMARTchicken - Code Made Easy

Tag: Table

  • Tutorials (190)
  • Reference (2172)
  • Snippets (69)
  • Home
  • Table
HTML Tutorials

HTML – Basic Tables

October 3, 2024 / HTML Tutorials, Tutorials / Table

HTML tables allow for data to be arranged into rows and columns using the <table> tag, which contains the <tr> tag for rows and the <td> tag for data cells.

HTML Tutorials

HTML – Table Formatting

October 3, 2024 / HTML Tutorials, Tutorials / Table

Table size, borders, cell padding, cell spacing, can all be changed by using attributes. Multiple rows or columns can be merged into one.

HTML Tutorials

HTML – Advanced Tables

October 3, 2024 / HTML Tutorials, Tutorials / Table

Advanced HTML tables may contain <thead>, <tbody>, and <tfoot> tags, along with a <caption> to give the data better structure. Other than that, there isn’t any difference from a basic table structure.

HTML Reference

HTML – Caption Tag

August 21, 2024 / HTML Reference, HTML Tags, Reference / Table

The <caption> tag defines a table caption. It must be inserted immediately after the opening <table> tag. It will be centered above the table by default, but can be changed using CSS.

HTML Reference

HTML – Column Group Tag

August 21, 2024 / HTML Reference, HTML Tags, Reference / Table

The <colgroup> tag specifies a group of one or more columns in a table for formatting using the <col> tag and applying formatting to entire columns.

HTML Reference

HTML – Column Tag

August 21, 2024 / HTML Reference, HTML Tags, Reference / Table

The <col> tag specifies column properties for each column within a colgroup tag.

HTML Reference

HTML – Table Body Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

The <tbody> tag is used to group the body content in the table. It’s used in conjunction with the <thead> and <tfoot> elements to specify each part of a table.

HTML Reference

HTML – Table Data Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

A <td> tag defines a cell containing data in a table. The number of <td> tags in a table row (<tr>) determines the number of columns in that row.

HTML Reference

HTML – Table Footer Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

The <tfoot> tag is used to group the body content in the table. It’s used in conjunction with the <thead> and <tbody> elements to specify each part of a table. The <tfoot> uses basic <tr> and <td> tags to define its rows and data cells.

HTML Reference

HTML – Table Head Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

A <th> tag defines a header (<thead>) cell containing data in a table. The number of <th> tags in a table row (<tr>) determines the number of columns in that row.

HTML Reference

HTML – Table Header Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

The <thead> tag is used to group header content in a table. It’s used in conjunction with the <tbody> and <tfoot>elements to specify each part of a table. The <thead> contains the two header columns that will contain <th> tags containing the names of each column.

HTML Reference

HTML – Table Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

A <table> tag defines a table consisting of a number rows (<tr>) and data cells (<td>), and optionally a header row (<thead>), footer row (<tfoot>), and caption.

HTML Reference

HTML – Table Row Tag

August 23, 2024 / HTML Reference, HTML Tags, Reference / Table

A <tr> tag defines a row of cells (<td>) containing data in a table. The number of <td> tags in a table row (<tr>) determines the number of columns in that row. The table below has a header row and four rows of data.

HTML Reference

HTML – Column and Column Group Attributes

July 30, 2024 / HTML Attributes, HTML Reference, Reference / Table

The col tag specifies column properties for each column within a colgroup tag. These are the attributes that can be used.

HTML Reference

HTML – Table Data Attributes

August 1, 2024 / HTML Attributes, HTML Reference, Reference / Table

A td tag defines a cell containing data in a table. These are its attributes.

HTML Reference

HTML – Table Head Attributes

August 1, 2024 / HTML Attributes, HTML Reference, Reference / Table

A th tag defines a header (thead) cell containing data in a table. These are its attributes.

CSS Tutorials

CSS – Styling HTML Tables

October 5, 2024 / CSS Tutorials, Tutorials / Table

HTML tables can be styled to a point using tag attributes like border, cell-padding, cell-spacing, and width/height. But tables can be greatly improved with CSS.

CSS Reference

CSS – border-collapse Property

September 27, 2024 / CSS Properties, CSS Reference, Reference / Border, Table

The border-collapse property sets whether table borders should collapse into a single border or remain separated as is the default.

CSS Reference

CSS – border-spacing Property

September 27, 2024 / CSS Properties, CSS Reference, Reference / Table

The border-spacing property sets the distance between the borders of adjacent table cells. This property only works when border-collapse is set to separate.

CSS Reference

CSS – caption-side Property

September 28, 2024 / CSS Properties, CSS Reference, Reference / Table

The caption-side property specifies the placement of a table caption to the top or bottom.

1 2 Next →

or View All Tags

Tutorials

  • HTML Tutorials (40)
  • CSS Tutorials (45)
    • CSS Flexbox (12)
  • JavaScript Tutorials (13)
  • jQuery Tutorials (13)
  • PHP Tutorials (0)
  • SQL Tutorials (0)
  • Python Tutorials (79)
    • Python File Handling (4)
    • Python and MySQL (11)
  • WordPress Tutorials (0)

Reference

  • HTML Reference (244)
    • HTML Tags (107)
    • HTML Attributes (46)
    • HTML Events (76)
    • HTML Resources (15)
  • CSS Reference (309)
    • CSS Selectors (55)
    • CSS Properties (220)
    • CSS Functions (17)
    • CSS Resources (17)
  • JavaScript Reference (555)
    • JavaScript Selectors (7)
    • JavaScript Operators (12)
    • JavaScript Statements (17)
    • JavaScript Methods (284)
    • JavaScript Properties (162)
    • JavaScript RegExp (45)
    • JavaScript Resources (28)
  • jQuery Reference (220)
    • jQuery Selectors (54)
    • jQuery Methods (140)
    • jQuery Ajax Methods (16)
    • jQuery Properties (17)
    • jQuery Resources (9)
  • PHP Reference (460)
    • PHP Keywords (59)
    • PHP Functions (400)
    • PHP Constants (0)
    • PHP Resources (1)
  • SQL Reference (290)
    • SQL Keywords (59)
    • MySQL Functions (138)
    • SQL Server Functions (83)
    • SQL Resources (10)
  • Python Reference (94)
    • Python Methods (86)
    • Python Resources (8)
  • WordPress Reference (0)

Snippets

  • HTML Snippets (3)
  • CSS Snippets (12)
  • JavaScript Snippets (5)
  • jQuery Snippets (8)
  • PHP Snippets (1)
  • SQL Snippets (3)
  • Python Snippets (1)
  • WordPress Snippets (36)
1SMARTchicken - Code Made Easy

333 Washington Blvd.
Suite 126
Marina del Rey, CA 90292
United States

contact2025@1smartchicken.com

  • About Us
  • Privacy Policy
  • Cookie Policy
  • Terms & Conditions

Search for Code:

or View All Tags

Copyright © 2025 1SMARTchicken | All Rights Reserved.