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, 5066👍, 0💬
Popular Posts:
Can we have shared events ? Yes, you can have shared event’s note only shared methods can raise shar...
How you will enable front-end validation based on the xml in validation.xml? The <html:javascr...
What will happen in these three cases? if (a=0) { //somecode } if (a==0) { //do something } if (a===...
How To Enter Numeric Values as HEX Numbers? - MySQL FAQs - Introduction to SQL Basics If you want to...
How do you open an SSH connection to a remote box? ????