CSS中針對IE6、7和FF的特殊寫法
一、基本概念
*能被IE6、7識別
!important能被IE7、FF
_能被IE6識別
二、實例
#wrapper
{
width: 100px!important; /* IE7+FF */
width: 80px; /* IE6 */
}
#wrapper2
{
width: 100px;
_width: 80px; /* IE6 */
}
最後更新:2017-04-03 12:54:04
一、基本概念
*能被IE6、7識別
!important能被IE7、FF
_能被IE6識別
二、實例
#wrapper
{
width: 100px!important; /* IE7+FF */
width: 80px; /* IE6 */
}
#wrapper2
{
width: 100px;
_width: 80px; /* IE6 */
}
最後更新:2017-04-03 12:54:04