Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4526👍, 0💬
Popular Posts:
.NET INTERVIEW QUESTIONS - Can we use events with threading ? Yes, you can use events with thread; t...
Have you ever worked with Microsoft Application Blocks, if yes then which? Application Blocks are C#...
How can a servlet refresh automatically if some new data has entered the database? You can use a cli...
How To Download and install PSP Evaluation? - PSP Tutorials - Fading Images to Background Colors wit...
How can you check to see whether a symbol is defined? You can use the #ifdef and #ifndef preprocesso...