http://www.skuare.net/test/jFloatingmenu.html
2010年3月31日水曜日
2010年3月30日火曜日
2010年3月29日月曜日
clearfix決定版!
<指定の仕方>
floatを解除したいhtmlソースの直ぐ下に
(例)<div class="clearfix"></div>
を入れて、
CSSに
/* new clearfix */
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
と指定する。
参考サイト
http://coliss.com/articles/build-websites/operation/css/css-new-clearfix-hack.html
floatを解除したいhtmlソースの直ぐ下に
(例)<div class="clearfix"></div>
を入れて、
CSSに
/* new clearfix */
.clearfix:after {
visibility: hidden;
display: block;
font-size: 0;
content: " ";
clear: both;
height: 0;
}
* html .clearfix { zoom: 1; } /* IE6 */
*:first-child+html .clearfix { zoom: 1; } /* IE7 */
と指定する。
参考サイト
http://coliss.com/articles/build-websites/operation/css/css-new-clearfix-hack.html
2010年3月27日土曜日
2010年3月24日水曜日
IE6で半透明の画像を表示させるJS
■詳細
■補足
1.htmlに画像を読み込んでいる場合。imgタグの一番後ろにセレクタを
入れる。
<div><img src="pngsample.png" class="png" /></div>
2.CSSでbackground等で
画像を読み込んでいる場合。
<div class="png">hogehoge</div>
3.リンクされている場所に指定する場合。aタグの中にセレクタを
入れる。
<li id="navi01"><a href="index.html" class="png"></a></li>
登録:
投稿 (Atom)