トップページのレイアウトについて


 「HTML4.01 Reference」によると、

  • Valign [GO to Attr]
    2.0 | 3.2 | 4.0
    IE3 | IE4 | IE5 | NN3 | NN4
    値:top | middle | bottom | baseline [CI]
    セル内での垂直位置を指定します。 また、既定値は「middle」です
    • top : 上詰め
    • middle : センタリング(既定値)
    • bottom : 下詰め
    • baseline : セルに含まれる文字列の最初の文字のベースラインを揃えます


とのことです。(強調はsasada)


 HTML4.01の仕様によると、table関係はrfc1942に基くとのことです。rfc1942では、『The recommended default for vertical alignment is VALIGN=MIDDLE.』と書かれています。


 tdの初期値は valign="middle" が推奨されるということですから、valign="top"はHTMLかCSSで明示的に指定するのが 仕様的に正しい(推奨される)ようです。


 斜め読みなので、検証願います。<ALL


追記: (16:00くらい)
 HTML4.01の仕様に、まんま

valign = top|middle|bottom|baseline [CI]

This attribute specifies the vertical position of data within a cell. Possible values:

  • top: Cell data is flush with the top of the cell.
  • middle: Cell data is centered vertically within the cell. This is the default value.


と書かれてました。あはは。
 (強調はsasadaです)