CSS

FireFoxで表示がおかしいのでメモる

<html lang="ja"> <head> <meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS"> <title></title> </head> <body> <style type="text/css"> </body></html>

cssで画面中央へ常に表示する

LightBoxっぽい感じで。prototype.js,jQuery使ってません。IE6無理 そのたの主要ブラウザ(chrome,Fx,IE7+8,Opera,Safari,Lunascape)はOK div#certification { position: fixed!important; position: absolute; top:0; left:0; width:100%; height:100%; z-in…

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>