Firefox 与 typed.js 不兼容?

Firefox incompatibility with typed.js?

我真的不知道如何称呼我的这个问题,所以如果你有更好的想法并且你是有能力这样做的人,请更改标题。

无论如何,我得到了这个网页 here that I'm developing, it works perfectly fine but my bottom menu gets deformated and goes to the side line on firefox. It only happens on the index, I suppose it has something to do with the Typed.js,我只在索引上使用它。

这是 chrome 上的样子 它在 firefox 上的样子

这真的让我很紧张,我尝试更改一些高度和宽度,但它没有任何改变。

这对我来说没有任何意义,我真的很感激能为此提供解决方案的聪明人。

TL;DR Here 仅在索引上的 firefox 上底部菜单变形,为什么?我该如何解决?

float.

.linhas_left.linhas_right.container_linhas 正在 floating,使所有后续文本和内联元素围绕它们流动。

Firefox 显然将 .menu 视为元素流中的内联元素,我不知道为什么会这样,但这是修复它的方法。
将此添加到您的 CSS:

.footer
{
    clear: both;
}

编辑:看起来这已被报告为 Firefox bug in 2009 already and too many duplicates have been filed so far,但看起来不会很快得到修复。