2008年11月21日

Firefoxバージョン振分け用 CSS hack

Firefox 1.0以降

.hoge, x:-moz-any-link {
.....
}


Firefox 1.5以降

.hoge, x:-moz-read-only {
.....
}


Firefox 3.0 以降

.hoge, x:-moz-broken {
.....
}

2008年08月26日

印刷がうまくいかないときのCSS

position: relative;
width: auto;
height: auto;
overflow-y: visible;
overflow-x: visible;

あやしい親ブロックに * で適用させてシラミつぶし。

2007年11月01日

text-indent: -1em

※ああああああああああああああああああああああああああああああああああああああああああああああああああああああ

    ↓

※ああああああああああああああああああああああああああああああああああああああああああああああああああああああ

.hoge {
  text-indent: -1em;
  margin-left: 1em;
}


Thanx!! http://dekoboko.org

2007年10月05日

Firefoxでinput type="file"

指定無し

<input type="file">

size="30"

<input type="file" size="30"/>

width:300px

<input type="file" style="width:300px"/>

size="30" width:300px

<input type="file" size="30" style="width:300px"/>

Firefoxにはstyleでのwidth指定が反映されないので、IEと揃えたい場合は「size」を使う。



2007年10月03日

Firefox多重起動

※事前にfirefoxが立ち上がっていない状態にしておく

$ firefox -profilemanager

profilemanagerでprofile作成する。
作成したらfirefoxを起動させずにprofilemanagerを終了。


それぞれのprofileでfirefoxを起動。

$ firefox -P [profile name] -no-remote

# defaultのprofile name = default

カテゴリー

アーカイブ

Mozilla Firefox ブラウザ無料ダウンロード