Answers for "what does a simple html table having <table> element contains"

4

table inside table html

<table>
    <tr>
        <td>
          	<table>
                <tr>
                    <td>Nested 1</td>
                    <td>Nested 2</td>
                </tr>
        	</table>
      	</td>
    </tr>
    <tr>
        <td>Lipsum...</td>
    </tr>
</table>
Posted by: Guest on September-05-2021
0

which of the following are elements associated with the html table layout?

Explanation: There are three elements in HTML table layout i.e. size, spanning and alignment.
Posted by: Guest on July-22-2021

Browse Popular Code Answers by Language