Tools, FAQ, Tutorials:
HTML Table Row 'tr' Tag/Element
What Is a "tr" Tag/Element?
✍: FYIcenter.com
A "tr" element is a special element that can only be used as a
sub-element of a "table" element. A "tr" element defines a row in a table.
Here are basic rules about "tr" elements:
Some invalid example of "tr" elements:
<!-- Invalid - "tr" is not a block element --> <body><tr><td>one</td></tr></body> <!-- Invalid - "tr" is not an inline element --> <p><tr><td>one</td><td>two</td></tr></p> <!-- Invalid - "tr" does not allow text content --> <table><tr>Row 1:<td>one</td><td>two</td></tr></table>
Â
⇒HTML Tables and Table Cells
⇒⇒HTML Tutorials
2017-05-20, 987👍, 0💬
Popular Posts:
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...
What's Wrong with "while ($c=fgetc($f)) {}" in PHP? If you are using "while ($c=fgetc($f)) {}" to lo...
Where to find tutorials on Visual Studio? I want to know How to learn Visual Studio. Here is a large...
How To Connect to MySQL from a PHP Script in PHP? If you want access the MySQL server, you must crea...
How to add a new operation to an API on the Publisher Dashboard of an Azure API Management Service? ...