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 Required Sub-element
What Is a Required Sub-element? - XHTML Tutorials - Introduction To Element Content Syntax
✍: FYIcenter.com
A required sub-element is a sub-element that you must included in the parent element. Most sub-elements are optional. But there are some sub-elements that are required by their parent elements.
Here are two good examples:
<!-- Valid: "head" requires "title" --> <head> <title>XHTML FAQs by FYIcenter.com</title> </head> <!-- Valid: "ul" requires "li" --> <ul> <li>Hope you like it.</li> </head>
2007-05-12, 4576👍, 0💬
Popular Posts:
How to reduce the final size of an executable file? Size of the final execuatable can be reduced usi...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...
What is the difference between Authentication and authorization? This can be a tricky question. Thes...
What is difference between SITP and UTP in testing ? UTP (Unit Test Plan) are done at smallest unit ...
Would I use print "$a dollars" or "{$a} dollars" to print out the amount of dollars in this example?...