IE與FF不相容網頁佈局CSS問題

來源:互聯網
上載者:User
關鍵字 網頁製作 CSS教程

CSS網頁佈局中往往會出現很多IE與FF不相容問題,下面整理了一些常見的可能及其解決的辦法!

1、用!important解決IE和Mozilla的佈局差別

!important是CSS1就定義的語法,作用是提高指定樣式規則的應用優先權,最重要的一點是:IE一直都不支援這個語法,而其他的瀏覽器都支援。 因此我們就可以利用這一點來分別給IE和其他瀏覽器不同的樣式定義,例如,我們定義這樣一個樣式:

.colortest{ 


border:20pxsolid#60A179!important; 


border:20pxsolid#00F; 


padding:30px; 


width:300px;


}  


在Mozilla中流覽時候,能夠理解!important的優先順序,因此顯示#60A179的顏色;在IE中流覽時候,不能夠理解!important的優先順序,因此顯示#00F的顏色。

2、解決超連結訪問過後hover樣式不顯示的問題

改變CSS屬性的排列順序: 先後順序標準應為:
a:link—a:visited—a:hover—a:active

3、Li中內容超過長度後以省略號顯示的方法

<meta content="text/html; charset=gb2312" HTTP-equiv="Content-Type" />


<style type="text/css">


<!--


li {


width:200px;


     white-space:nowrap;


     text-overflow:ellipsis;


     -o-text-overflow:ellipsis;


     overflow: hidden;}


--></style>


<ul>


     <li><a href="#">CSS Web Design 我愛CSS-Web標準化 - www.52CSS.com</a></li>


     <li><a href="#">web標準常見問題大全 - www.52CSS.com</a></li>


</ul>


4、margin和padding定義尺寸的縮寫

margin:3px——表示所有邊都是3px;
margin:3px   5px—— 表示top和bottom的值是3px ,right和left的值是5px
margin:3px   5px 7px——表示top的值是3,right和left的值是5,bottom的值是7
margin:3px   5px 7px 5px——四個值依次表示top,right,bottom,left;上右下左。

5、解決IE不能正確顯示透明PNG——header內加入代碼

<script language="javascript">


function correctPNG()


{


for(var i=0; i<document.images.length; i++)


{


   var img = document.images[i]


   var imgName = img.src.toUpperCase()


   if (imgName.substring(imgName.length-3, imgName.length) == "PNG")


   {


var imgID = (img.id) ? "id='" + img.id + "' " : ""


   var imgClass = (img.className) ? "class='" + img.className + "' " : ""


   var imgTitle = (img.title) ? "title='" + img.title + "' " : "title='" + img.alt + "' "


   var imgStyle = "display:inline-block;" + img.style.cssText


   if (img.align == "left") imgStyle = "float:left;" + imgStyle


   if (img.align == "right") imgStyle = "float:right;" + imgStyle


if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle 


   var strNewHTML = "<span " + imgID + imgClass + imgTitle


   + " style="" + "width:" + img.width + "px; height:" + img.height + "px;" + imgStyle + ";"


   + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"


   + "(src='" + img.src + "', sizingMethod='scale');" ></span>"


   img.outerHTML = strNewHTML


   i = i-1


   }


}


}


window.attachEvent("onload", correctPNG);


</script>  


6、ul在Firefox和IE下表現不同

使用(padding:0; margin:0; list-style:inside;)
或者(padding:0; margin:0; list-style:none;)實現相容

7、BOX模型在firefox和IE中的解釋相差2px的解決方法

div{


margin:30px!important;


margin:28px;


}  


注意這兩個margin的順序一定不能寫反。 根據上面提到的IE並不支援!important,所以在IE下其實解釋成這樣:

div{


maring:30px;


margin:28px


}  


重複定義的話按照最後一個來執行,所以不可以只寫margin:XXpx!important;

8、margin的預設效果

div裡的內容,ie預設為居中,而ff預設為左對齊。 使ff內容居中的方法是增加代碼margin:auto;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.