Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is a TR Tag/Element
What Is a TR Tag/Element? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells
✍: 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>
2007-05-11, 5044👍, 0💬
Popular Posts:
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
How To Empty Your Recycle Bin? - Oracle DBA FAQ - Managing Oracle Database Tables If your recycle bi...
what is a service contract, operation contract and Data Contract? - part 1 In the below sample we ha...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
What Is URI? URI (Uniform Resource Identifier) is a superset of URL. URI provides a simple and exten...