2009-05-28から1日間の記事一覧

特になし

<html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>Title</title> </head> <body> </body> </html>

CSS中央揃え

CSS

margin: 0 auto; <div style="width:50px;height:50px;background-color:red;margin: 0 auto;"></div>

テーブルタグに適応させるCSS

CSS

table.s0{ border-top:1px solid #c0c0c0; border-left:1px solid #c0c0c0; border-collapse:collapse; border-spacing:0; empty-cells:show; } .s0 td{ padding: 3px 5px; border-right:1px solid #c0c0c0; border-bottom:1px solid #c0c0c0; } <table border="1" class="s0"> <tr><td>a</td></tr> <tr><td>b</td></tr> </table>