2006-10-01から1ヶ月間の記事一覧

interval

--5時間前 now() - interval "5" HOUR --10日と5時間後 now() + interval "10 5" DAY_HOUR

いつも一番下に表示(センタリング)

css

wrapperをかましてセンタリング。 html { height:100%; } body { height:100%; text-align:center; } #wrapper { width:800px; margin:0 auto; height:100%; position: relative; } *html body #wrapper { position: absolute; } html>body #wrapper { heigh…

いつも一番下に表示

css

* { margin:0; padding:0; } html, body { height: 100%; } body{ height:100%; position: relative; } html>body { height: auto; min-height: 100%; } /* footerのbgとheightをそろえる*/ #empty { height:120px; } #footer { position: absolute; left: 0…