いくつかのよく使われるCSS hackコード
一.クリアコード:ブラウザによってデフォルトの初期値が異なるため、クリアコードでこれらのデフォルト値を0に高くする必要があります.
二.clearfix:外部コンテナとしてDIVがある場合、内部のDIVがfloatスタイルに設定されている場合、外部のコンテナDIVは内部にclearがないため、開けられません.次のコードで解決できます.
三.ie 6はposition:fixedをサポートしていません.のBUG;
四.ie 6は、max-width、max-height、min-width、min-heightのBUGをサポートしていない.
- body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, button, textarea, p, blockquote, th, td {
- margin: 0;
- padding: 0;
- }
二.clearfix:外部コンテナとしてDIVがある場合、内部のDIVがfloatスタイルに設定されている場合、外部のコンテナDIVは内部にclearがないため、開けられません.次のコードで解決できます.
- .clearfix:after{
- content:".";
- display:block;
- height:0;
- clear:both;
- visibility:hidden;
- }
-
- * html .clearfix{
- height:1%;
- }
三.ie 6はposition:fixedをサポートしていません.のBUG;
- /* IE6 */
- .ie6fixedTL{position:fixed;left:0;top:0}
- .ie6fixedBR{position:fixed;right:0;bottom:0}
- /* IE6 */
- /* IE6 bug */
- * html,* html body{background-image:url(about:blank);background-attachment:fixed}
- * html .ie6fixedTL{position:absolute;left:expression(eval(document.documentElement.scrollLeft));top:expression(eval(document.documentElement.scrollTop))}
- * html .ie6fixedBR{position:absolute;left:expression(eval(document.documentElement.scrollLeft+document.documentElement.clientWidth-this.offsetWidth)-(parseInt(this.currentStyle.marginLeft,10)||0)-(parseInt(this.currentStyle.marginRight,10)||0));top:expression(eval(document.documentElement.scrollTop+document.documentElement.clientHeight-this.offsetHeight-(parseInt(this.currentStyle.marginTop,10)||0)-(parseInt(this.currentStyle.marginBottom,10)||0)))}
四.ie 6は、max-width、max-height、min-width、min-heightのBUGをサポートしていない.
- _width:expression((documentElement.clientWidth < 500) ? "500px" : "auto" );// min-width
- _width:expression((documentElement.clientWidth >500) ? "500px" : "auto" );// max-width
- _height:expression((documentElement.clientHeight<500) ? "500px" :"auto");// min-height
- _height:expression((documentElement.clientHeight>500) ? "500px" :"auto");// max-height