HTML Table Alignment

Duration: 11 min

This video lesson is available to enrolled students.

Enroll to watch — TPSC Assistant Technical Officer (ATO - CS) 2026

AI summary & chapters

AI Summary

An AI-generated summary of this video lecture.

This lecture introduces HTML table alignment, distinguishing between horizontal and vertical positioning. The instructor defines table alignment as the placement of a table or its internal content on a web page, identifying two primary types: horizontal alignment (left, center, right) and vertical alignment (top, middle, bottom). The session begins by explaining the `align` attribute used within the `<table>` tag to position the entire table horizontally, noting that vertical alignment is not applicable at this level. A reference table maps values like `left`, `center`, and `right` to their specific positioning effects. The instructor then demonstrates a practical example of a right-aligned table, using visual arrows to connect the `align="right"` code attribute to its rendered output. The lesson transitions to cell-level alignment, where the `align` attribute is applied to `<td>` tags to control horizontal text placement. The instructor highlights default behaviors, noting that `<th>` elements are centered by default while `<td>` elements align left. Finally, the lecture covers vertical cell alignment using the `valign` attribute with values for top, middle, and bottom. The session concludes by introducing vertical table headers, demonstrating how to use `<th>` elements in the first column of a row to create a structured layout, such as a schedule with time slots.

Chapters

  1. 0:00 2:00 00:00-02:00

    The lecture opens with the slide titled "HTML Table Alignment," defining alignment as the positioning of a table or its content on a web page. The instructor lists two types: "1. Horizontal Alignment (Left, Center, Right)" and "2. Vertical Alignment (Top, Middle, Bottom)." A reference table is displayed with rows for left, center, and right values. The instructor underlines key terms like 'positioning' and adds red checkmarks next to the alignment types while drawing diagrams to illustrate how a table is positioned within a page layout.

  2. 2:00 5:00 02:00-05:00

    The instructor explains the syntax for horizontal alignment, showing "Syntax : <table align="center">" and noting that vertical alignment is not used with the `<table>` tag. A code example for a right-aligned table is presented, featuring the line "<table border="1" align="right">". The instructor draws red arrows from the code snippet to the rendered output, visually linking the `align` attribute to the table's position on the right side of the screen.

  3. 5:00 10:00 05:00-10:00

    The focus shifts to "Cell Content Alignment," where the `align` attribute is applied within `<td>` tags using the syntax "<td align="value">Content</td>". An example slide shows a Firstname/Lastname table with handwritten notes stating "<th> by default center" and "<td> by default left." The instructor then introduces vertical alignment using the `valign` attribute, providing the syntax "<td valign="value">Content</td>" and listing values for top, middle, and bottom with corresponding descriptions.

  4. 10:00 11:24 10:00-11:24

    The instructor demonstrates vertical alignment using a table with the code "<table border="1" width="450" height="150">", showing cells with `valign="top"`, `valign="middle"`, and `valign="bottom"`. Arrows are drawn to connect these code attributes to the visual output. The lesson concludes with a transition to "Vertical Table Headers," where an example table displays time slots (8:00 to 13:00) in the first column, illustrating how `<th>` elements are used to define vertical headers.

The lecture follows a logical progression from global table positioning to specific cell-level formatting. It begins by establishing the theoretical framework of horizontal and vertical alignment, using a reference table to clarify attribute values. The instructor emphasizes the distinction between the `align` attribute for horizontal placement and the `valign` attribute for vertical placement. Practical examples are used to reinforce these concepts, with visual annotations (arrows and checkmarks) linking code syntax to rendered results. Key takeaways include the default alignment behaviors of `<th>` (center) and `<td>` (left) elements, as well as the specific application of `valign` for vertical cell content. The final segment on vertical table headers provides a practical application of these alignment principles in creating structured data layouts.

Loading lesson…