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>
2017-05-20, 1352🔥, 0💬
Popular Posts:
What Is session_register() in PHP? session_register() is old function that registers global variable...
How To Copy Array Values to a List of Variables in PHP? If you want copy all values of an array to a...
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
How to use the JSON to XML Conversion Tool at utilities-online.info? If you want to try the JSON to ...
How To Move Uploaded Files To Permanent Directory in PHP? PHP stores uploaded files in a temporary d...