2007-06-01から1ヶ月間の記事一覧

ActionScriptでEclipse

eclipse-SDK-3.3-win32.zip Eclipse downloads - mirror selection http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-win32.zip All-In-One-Eclipse-2.1.0.exe All-In-One Project - All-I…

ez-HTMLにローカルで実行可能の文法チェック機能を入れてみよう。

xxxx WIKI公認のHTMLエディタのez-HTMLに ローカルで実行可能の文法チェック機能(Another HTML-lint) を入れてみよう。 ・Another HTML-lint http://openlab.ring.gr.jp/k16/htmllint/download.html の htmllint.lzh ( 733K ) Windowsで利用するのであれば…

IE6とIE7の振り分け用ie.css

CSS

/* ========================= ie6 + ie5.x ========================= */ * html .sub_page #side_mainList { xxx } /* ========================= ie7 ========================= */ *+html .sub_page #side_mainList { xxx }

IE6で空タグを使う場合、最低限フォント分の高さが確保される。

CSS

そのため空タグに以下を記述。 overflow : hidden ;

floatでmarginが2倍になったとき

CSS

margin : ? ; display : inline ; float : xxx ;display : inline ;を入れる。

JavaScriptを使わないでをロールオーバー

CSS

画像非表示時の何も読めなくなる対応を考えて、特にケータイの。 <a href="#"><img src="globalmenu02a.jpg" /></a>img { border : 0 ; } a:hover img { visibility : hidden ; } a { display : block ; background-image : url('globalmenu02d.jpg') ; width : 126px ; }Ff,opera,NSはOK IEがダメ かと思っ…