針對class、id所做的CSS HACK

來源:互聯網
上載者:User

這是一篇關於CSS HACK的文章,這篇文章中提到的CSS HACK是針對class、id中屬性的HACK,排列的順序都具有要求。今天要和大家說的是針對class、id所做的CSS HACK。

 

 代碼如下 複製代碼

.test{/*FF*/
    height:20px;
    background-color:orange;
}
*+html .test{/*IE7*/
    height:20px;
    background-color:blue;
}
*html .test{/*IE6*/
    height:20px;
    background-color:black;
}

 


通過上面的CSS代碼可以看出FF還是最聽話的瀏覽器,在IE6和IE7如果要使用HACK必須要在前面加上夫級標籤html。這裡就很好記憶了,IE6加*html,而IE7加*+html,暗示加了一個版本。通過對class、id所做的CSS HACK好處在於不用顧及前後順序,而且便於管理和其他人員接受,還可以通過這種HACK實作類別似JS瀏覽器版本的控制。缺點嘛可能就是產生大量的代碼吧!好了,大致就先說說這些。
                   
上面內容看完可以點擊下面的效果在不同瀏覽器來看看效果,其中橙色代表FF,藍色代表IE7,黑色代表IE6。大家可以自行測試

網頁教學網

 

 代碼如下 複製代碼
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CSS hack</title>
<style type="text/css">
*{
 margin:0;
 padding:0;
}
.test{/*FF*/
 height:20px;
 background-color:orange;
}
*+html .test{/*IE7*/
 height:20px;
 background-color:blue;
}
*html .test{/*IE6*/
 height:20px;
 background-color:black;
}
</style>
</head>
 <div class="test"></div>
<body>
</body>
</html>

 

相關文章

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.