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, 5102👍, 0💬
Popular Posts:
How To Remove the Top White Space of Your Web Page? - CSS Tutorials - Introduction To CSS Basics The...
What is difference between custom JSP tags and JavaBeans? Custom JSP tag is a tag you defined. You d...
Do events have return type ? No, events do not have return type.
What's the difference between J2SDK 1.5 and J2SDK 5.0? There is no difference, Sun Microsystems just...
What is the difference between Class and structure’s ? Following are the key differences between the...