<<PREV | TOP | NEXT>>

TABLE $B4XO"MWAG(B

last modified 23rd/Oct. 2000

  1. TABLE - $BI=(B
  2. TABLE $BMWAG(B
  3. CAPTION $BMWAG(B - $BI=Bj(B
  4. $B9T%0%k!<%WMWAG(B - THEAD, TFOOT, TBODY $BMWAG(B
  5. $BNs%0%k!<%WMWAG(B - COLGROUP, COL $BMWAG(B
  6. TR $BMWAG(B - $B9TMWAG(B
  7. $B%;%kMWAG(B - TH, TD $BMWAG(B
    1. $B%;%k$N7k9g(B
    2. $B%;%kFb$NJ8;zNsB7$((B
    3. CSS $B$K$h$kJ8;zNsB7$((B - 'text-align', 'vertical-align'
  8. $BI=$N%\!<%@!
  9. $BI=$NI}$N;XDj(B

$BI=$O(B TABLE $BMWAG$GI=$7$^$9!#$3$NMWAG$O(B$B%V%m%C%/MWAG(B$B$G$9!#(B

<table>
...the rest of the table...
</table>

$BMWAG@k8@(B

TABLE $BMWAG$H$=$N;RB9MWAG$N(B$BJ8=q7?Dj5A(B$B!((B

<!ELEMENT TABLE - -
     (CAPTION?, (COL*|COLGROUP*), THEAD?, TFOOT?, TBODY+)>
<!ELEMENT CAPTION  - - (%inline;)*     -- table caption -->
<!ELEMENT THEAD    - O (TR)+           -- table header -->
<!ELEMENT TFOOT    - O (TR)+           -- table footer -->
<!ELEMENT TBODY    O O (TR)+           -- table body -->
<!ELEMENT COLGROUP - O (COL)*          -- table column group -->
<!ELEMENT COL      - O EMPTY           -- table column -->
<!ELEMENT TR       - O (TH|TD)+        -- table row -->
<!ELEMENT (TH|TD)  - O (%flow;)*       -- table header cell, table data cell-->

TABLE $BMWAG$O!"(B CAPTION, CLGROUP, COL, THEAD, TBODY, TFOOT $BMWAG$r;R6!MWAG$K;}$F$^$9!#FC$K(B TBODY $BMWAG$OI,?\$G!"0l$D0J>e;}$?$J$1$l$P$J$j$^$;$s$9!#(B

THEAD, TFOOT, TBODY $BMWAG$O(B TR $BMWAG$r0l$D0J>e;R6!MWAG$K;}$?$J$1$l$P$J$j$^$;$s!#(B

TR $BMWAG$O(B TH $BMWAG$H(B TD $BMWAG$r;R6!MWAG$K;}$F$^$9!#:GDc$G$b2?$l$+0l$D0J>e$r;}$?$J$1$l$P$J$j$^$;$s!#(B

TABLE $BMWAG$H(B CAPTION $BMWAG$r=|$$$?A4$F$NMWAG$,!"=*N;%?%0>JN,2DG=(B (Optinal) $B$G$9!#(B TBODY $BMWAG$O!"(B THEAD $BMWAG$H(B TFOOT $BMWAG$,8=$l$J$$I=$K8B$j!"3+;O%?%0$b>JN,2DG=$G$9!#$7$+$7!"JN,$r2rJN,$7$J$$J}$,NI$$$G$7$g$&!#(B

$B:G>.$NI=$NNc!((B

<table>
  <tbody>
    <tr>
      <th>$BI=(B</th><td>$B%;%k(B</td>
    </tr>
  </tbody>
</table>

$BB0@-@k8@(B

TABLE $B4XO"MWAG$NB0@-$N@k8@!((B

<!ATTLIST TABLE                        -- table element --
  %attrs;                              -- %coreattrs, %i18n, %events --
  summary     %Text;         #IMPLIED  -- purpose/structure for speech output--
  width       %Length;       #IMPLIED  -- table width --
  border      %Pixels;       #IMPLIED  -- controls frame width around table --
  frame       %TFrame;       #IMPLIED  -- which parts of frame to render --
  rules       %TRules;       #IMPLIED  -- rulings between rows and cols --
  cellspacing %Length;       #IMPLIED  -- spacing between cells --
  cellpadding %Length;       #IMPLIED  -- spacing within cells --
  align       %ALign;        #IMPLIED  -- table position relative to window --
  bgcolor     %Color;        #IMPLIED  -- background color for cells --
  %reserved;                           -- reserved for possible future use --
  datapagesize CDATA         #IMPLIED  -- reserved for possible future use --
  >
<!ENTITY % CAlign "(top|bottom|left|right)">
<!ATTLIST CAPTION
  %attrs;                              -- %coreattrs, %i18n, %events --
  align       %CAlign;       #IMPLIED  -- relative to table --
  >
<!--
COLGROUP groups a set of COL elements. It allows you to group
several semantically related columns together.
-->
<!ATTLIST COLGROUP
  %attrs;                              -- %coreattrs, %i18n, %events --
  span        NUMBER         1         -- default number of columns in group --
  width       %MultiLength;  #IMPLIED  -- default width for enclosed COLs --
  %cellhalign;                         -- horizontal alignment in cells --
  %cellvalign;                         -- vertical alignment in cells --
  >
<!--
 COL elements define the alignment properties for cells in
 one or more columns.
 The WIDTH attribute specifies the width of the columns, e.g.
     width=64        width in screen pixels
     width=0.5*      relative width of 0.5
 The SPAN attribute causes the attributes of one
 COL element to apply to more than one column.
-->
<!ATTLIST COL                          -- column groups and properties --
  %attrs;                              -- %coreattrs, %i18n, %events --
  span        NUMBER         1         -- COL attributes affect N columns --
  width       %MultiLength;  #IMPLIED  -- column width specification --
  %cellhalign;                         -- horizontal alignment in cells --
  %cellvalign;                         -- vertical alignment in cells --
  >
<!--
    Use THEAD to duplicate headers when breaking table
    across page boundaries, or for static headers when
    TBODY sections are rendered in scrolling panel.
    Use TFOOT to duplicate footers when breaking table
    across page boundaries, or for static footers when
    TBODY sections are rendered in scrolling panel.
    Use multiple TBODY sections when rules are needed
    between groups of table rows.
-->
<!ATTLIST (THEAD|TBODY|TFOOT)          -- table section --
  %attrs;                              -- %coreattrs, %i18n, %events --
  %cellhalign;                         -- horizontal alignment in cells --
  %cellvalign;                         -- vertical alignment in cells --
  >
<!ATTLIST TR                           -- table row --
  %attrs;                              -- %coreattrs, %i18n, %events --
  %cellhalign;                         -- horizontal alignment in cells --
  %cellvalign;                         -- vertical alignment in cells --
  bgcolor     %Color;        #IMPLIED  -- background color for row --
  >
<!-- Scope is simpler than headers attribute for common tables -->
<!ENTITY % Scope "(row|col|rowgroup|colgroup)">
<!-- TH is for headers, TD for data, but for cells acting as both use TD -->
<!ATTLIST (TH|TD)                      -- header or data cell --
  %attrs;                              -- %coreattrs, %i18n, %events --
  abbr        %Text;         #IMPLIED  -- abbreviation for header cell --
  axis        CDATA          #IMPLIED  -- comma-separated list of related headers--
  headers     IDREFS         #IMPLIED  -- list of id's for header cells --
  scope       %Scope;        #IMPLIED  -- scope covered by header cells --
  rowspan     NUMBER         1         -- number of rows spanned by cell --
  colspan     NUMBER         1         -- number of cols spanned by cell --
  %cellhalign;                         -- horizontal alignment in cells --
  %cellvalign;                         -- vertical alignment in cells --
  nowrap      (nowrap)       #IMPLIED  -- suppress word wrap --
  bgcolor     %Color;        #IMPLIED  -- cell background color --
  width       %Length;       #IMPLIED  -- width for cell --
  height      %Length;       #IMPLIED  -- height for cell --
  >

$B%Q%i%a%?

<!ENTITY % TFrame "(void|above|below|hsides|lhs|rhs|vsides|box|border)">
<!--
 The RULES attribute defines which rules to draw between cells:
 If RULES is absent then assume:
     "none" if BORDER is absent or BORDER=0 otherwise "all"
-->
<!ENTITY % TRules "(none | groups | rows | cols | all)">
<!-- horizontal placement of table relative to document -->
<!ENTITY % TAlign "(left|center|right)">
<!-- horizontal alignment attributes for cell contents -->
<!ENTITY % cellhalign
  "align      (left|center|right|justify|char) #IMPLIED
   char       %Character;    #IMPLIED  -- alignment char, e.g. char=':' --
   charoff    %Length;       #IMPLIED  -- offset for alignment char --"
  >
<!-- vertical alignment attributes for cell contents -->
<!ENTITY % cellvalign
  "valign     (top|middle|bottom|baseline) #IMPLIED"
  >

$B0J>e$,(B Transitional DTD $B$K$*$1$k(B TABLE $B$NDj5A$G$9!#(B

$B$3$l$O(B Transitional DTD $B$NH4?h$J$N$G!"GQ;_M=Dj$N(B$BHs?d>)B0@-(B$B$,B??t4^$^$l$F$$$^$9!#%\!<%@!<$J$I$N8+1I$(;XDjMQ$NB0@-$OA4$FHs?d>)$G$9!#(B

TABLE $BMWAG$NB0@-$GI,?\(B (#REQUIRED) $B$J$b$N$OFC$KM-$j$^$;$s!#(B

<<PREV | TOP | NEXT>>

SEO [PR] 爆速!無料ブログ 無料ホームページ開設 無料ライブ放送
FC2> モビット