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 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, 4978👍, 0💬
Popular Posts:
What are unadjusted function points and how is it calculated? Unadjusted function points = ILF + EIF...
What Happens to Indexes If You Drop a Table? - Oracle DBA FAQ - Managing Oracle Table Indexes If you...
What does static variable mean? There are 3 main uses for static variables: If you declare within a ...
What will be printed as the result of the operation below: main() { char *ptr = " Cisco Systems"; *p...
What is difference between SITP and UTP in testing ? UTP (Unit Test Plan) are done at smallest unit ...