2009-09-22から1日間の記事一覧

CSSでTableをデザイン

1.テーブルデザインHTMLによるテーブルでは次のような形となりますが、CSSを使うと見栄えのするテーブルを作ることができます。(1) HTMLによるテーブル /app/views/appli/index.html.erb テーブル(HTML) <br> <br> <table border> <caption>Table designs</caption> <tr bgcolor="green"> <th><font color="white">コード</font></th> <th><font color="white">商品名</font></th> </tr> <tr><td></td></tr></table>