home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip: 25 Years Anniversary
/
CHIP_25Jahre_Jubilaeum.iso
/
downloads
/
401065
/
WPO11
/
Data1.cab
/
HTML_TBL.DTD
< prev
next >
Wrap
Text File
|
2003-03-07
|
3KB
|
69 lines
<!--
File: HTML_TBL.DTD (DTD Declaration Subset)
DISCLAIMER: This declaration subset contains the HTML table
information that is considered relevant by the SGML features of
Corel WordPerfect 9. This file is NOT a complete DTD, and
cannot be compiled into an LGC file without modification.
Although this file can be included in an arbitrary DTD to add some
level of HTML table support, it does not include all of the elements,
entities, and attributes found in the HTML 3.2 DTD defined in the W3C
Document Type Definition for the HyperText Markup Language. It is
intended primarily for your information.
-->
<!ENTITY % body.content "(#PCDATA)" -- no special handling for content -->
<!ENTITY % text "(#PCDATA)" -- no special handling -->
<!ENTITY % Length "CDATA" -- nn for pixels or nn% for percentage length -->
<!ENTITY % Pixels "CDATA" -- integer representing length in pixels -->
<!--======================= Tables ========================================-->
<!-- Widely deployed subset of the full table standard, see RFC 1942
e.g. at http://www.ics.uci.edu/pub/ietf/html/rfc1942.txt -->
<!-- horizontal placement of table relative to window -->
<!ENTITY % Where "(left|center|right)">
<!-- horizontal alignment attributes for cell contents -->
<!ENTITY % cell.halign
"align (left|center|right) #IMPLIED"
>
<!-- vertical alignment attributes for cell contents -->
<!ENTITY % cell.valign
"valign (top|middle|bottom|baseline) #IMPLIED"
>
<!ELEMENT table - - (caption?, tr+)>
<!ELEMENT tr - O (th|td)*>
<!ELEMENT (th|td) - O %body.content>
<!ATTLIST table -- table element --
width %Length #IMPLIED -- table width relative to window --
border %Pixels #IMPLIED -- controls frame width around table --
dummy (border) #IMPLIED -- fixes SGML error for border w/o value --
>
<!ELEMENT CAPTION - - (%text;)* -- table or figure caption -->
<!ATTLIST CAPTION
align (top|bottom) #IMPLIED
>
<!ATTLIST tr -- table row --
%cell.halign; -- horizontal alignment in cells --
%cell.valign; -- vertical alignment in cells --
>
<!ATTLIST (th|td) -- header or data cell --
rowspan NUMBER 1 -- number of rows spanned by cell --
colspan NUMBER 1 -- number of cols spanned by cell --
%cell.halign; -- horizontal alignment in cells --
%cell.valign; -- vertical alignment in cells --
width %Length #IMPLIED -- cell width --
>