• ベストアンサー

CSSを使ってテーブルを上下中央表示にしたい。

横500px、縦310pxのテーブルを左右、上下を中央表示にしたいのですが、どのようにすれば良いのでしょうか? 過去ログにも似たような質問があったのですが、うまくいかなくて。

質問者が選んだベストアンサー

  • ベストアンサー
  • crepon133
  • ベストアンサー率51% (399/776)
回答No.1

これでどうですか? <style type="text/css"> <!-- #center { height:310px; width:500px; position:absolute; top:50%; left:50%; margin-top:-155px; margin-left:-250px; background-color:#dddddd; } --> </style> <div id="center"> <table width="500" height="310" border="0" cellpadding="0" cellspacing="0"> <tr> <td>あああああ</td> </tr> </table> </div>

tacfore
質問者

お礼

無事できました。 ありがとうございまいした。

専門家に質問してみよう