css怎样判断是火狐浏览器

html-css044

css怎样判断是火狐浏览器,第1张

-moz-前缀属性再覆盖一遍某条属性,如果执行了,就是火狐

例如

<style>

div{

width:100px

height:100px

border:1px solid #ccc

transform:rotate(180deg)

-moz-transform:rotate(45deg)

}

</style>

<style type="text/css">

.className{padding:10px}

</style>

<!--[if IE]>

<style type="text/css">

.className{padding:40px}

</style>

<![endif]-->