KnowledgeBoat Logo

Computer Applications

Choose the correct HTML to left-align the content inside a table cell.

  1. <td valign="left">
  2. <tdleft>
  3. <td align="left">
  4. <td leftalign>

HTML Advanced Features

2 Likes

Answer

<td align="left">

Reason — The "align" attribute is used to specify the horizontal alignment of the content within a table cell. By setting the "align" attribute to "left", the content inside the <td> tag will be left-aligned.

Answered By

3 Likes


Related Questions