CSS中如何只针对firefox做处理?

     一般情况下,((x)html中)不能在它link的单独的*.css文件中加入firefox标志。需要在(x)html的head中加入<style>标签来做处理。下面是笔者项目中用到的一个做法。

<style type="text/css">
            @-moz-document url-prefix() {
                #modload {
                325px;
            }
            }
</style>

原文地址:https://www.cnblogs.com/yangxiaowei/p/3613842.html