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:
Can Two Elements Partially Overlap Each Other
Can Two Elements Partially Overlap Each Other? - XHTML Tutorials - Introduction To Element Content Syntax
✍: FYIcenter.com
No, two elements can not partially overlap each other. One element must be completely enclosed inside the other element. See the following two examples:
<!-- Valid: "em" is enclosed inside "strong" -->
<p>There was once upon <strong>a time a <em>peasant-
woman</em> who had a daughter</strong> and a step-
daughter.</p>
<!-- Invalid: "em" is partially overlapped
with "strong" -->
<p>There was once upon <strong>a time a <em>peasant-
woman</strong> who had a daughter</em> and a step-
daughter.</p>
2007-05-12, 5067👍, 0💬
Popular Posts:
Do You Know the Book "JUnit in Action"? You should know this book. It received some good reviews. Ti...
Can you explain duplex contracts in WCF? In duplex contracts when client initiates an operation the ...
How to create arrays in JavaScript? We can declare an array like this var scripts = new Array(); We ...
What is Windows DNA architecture? Note :- If you have worked with classic ASP this question can come...
What's the output of the following program? And why? #include main() { typedef union { int a; char b...