2013-11-01から1ヶ月間の記事一覧

CSS animation アニメGIF風のアイコン IE非対応

css

HTML <span class="new">New</span> CSS .new { display: inline-block; * display: inline ; * zoom: 1; background-color: #f10 ; color: #FFF ; -webkit-animation: blink 1.5s ease-in-out infinite alternate; -moz-animation: blink 1.5s ease-in-out infinite alternate; -ms-a…

php sessionの有効期限について

php

phpinfo()のセッション項目 session 有効期限 ; After this number of seconds, stored data will be seen as 'garbage' and ; cleaned up by the garbage collection process. session.gc_maxlifetime = 1440 1440秒保存されガベージコレクションの処理によ…

IE6 7 でinline-blockを使う

css

li { display: inline-block; *display: inline; *zoom: 1; } スターハック(IE6 7のみ) haslayout(バグ対策) これでOK