Firefox中的CSS问题

时间:2014-05-19 14:16:40

标签: php html css google-chrome firefox

我有一个下面的CSS,适用于谷歌Chrome,但不适用于Firefox。

$document->addStyleDeclaration('body{margin-bottom:65px!important} 
.toolbar_fixed{position:fixed;left:1px;bottom:-5px;width:100%!important} 
.toolbar_fixed_inner{style="height:100%;width:100%;background:'.$params->get('background').';border-top:'.$params->get('border_pixels').'px solid '.$params->get('border_color').';color:#202020}
.toolbar_fixed_content{text-align:'.$params->get('align').';width:100%;margin-top:10px;padding-bottom:10px;margin-bottom:5px}
.toolbar_fixed_content a:hover{background:none!important}
.toolbar_fixed_content img{margin-right:'.$params->get('images_space').'px}
');

如果您在Google Chrome和Firefox中查看此链接(带有社交媒体图标的底栏),您将会了解其中的区别。 http://www.joomla357.com/demo/toolbar-joomla-module.html

请让我知道如何为firefox提供相同的功能。感谢

1 个答案:

答案 0 :(得分:3)

我不知道这是什么语法,但可能是这一行

.toolbar_fixed_inner{style="height:100%;width:100%;background:'.$params->get('background').';border-top:'.$params->get('border_pixels').'px solid '.$params->get('border_color').';color:#202020}

不正确。尝试删除style =“.. part

.toolbar_fixed_inner{height:100%;width:100%;background:'.$params->get('background').';border-top:'.$params->get('border_pixels').'px solid '.$params->get('border_color').';color:#202020}

并尝试一下