DIV+CSS網頁中IE和Firefox相容問題的整理

來源:互聯網
上載者:User

 

DIV+CSS構建網站時常會出現瀏覽器不相容的問題,下面整理了一些常見不相容問題,及解決辦法!

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="#">web標準常見問題大全web標準常見問題大全</a></li>
     <li><a href="#">web標準常見問題大全web標準常見問題大全</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;)實現相容,參考地址:http://and8.net/article.asp?id=273

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;

相關文章

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.