Computer Science, asked by kapooranu0101, 6 hours ago

choose the correct html to left align the content inside a table cell​

Answers

Answered by rajdeo8052
0

Answer:

I think solution is simple for using left row of table simply you can see below:-

Explanation:

<TABLE>

     <TR>

      <!--Here the first element is already left aligned-->

           <TD> column 1  Row 1 </TD>

           <TD> column 2 Row 1 </TD>

     </TR>

     <TR>

     <!--Here also the first element is already left aligned-->

           <TD> column 1  Row 2 </TD>

           <TD> column 2 Row 2</TD>

     </TR>

</TABLE>

Similar questions