嗨我在Chrome / firefox和适当的浏览器中有这个工作的上层菜单部分,但它在搜索栏/社交图标标题区域的IE 9中已经损坏。
编辑以帮助这篇文章的蹩脚,抱歉:(
这就是标题HTML的样子
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php echo $this->language; ?>" lang="<?php echo $this->language; ?>" >
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
由于
答案 0 :(得分:0)
将标题更改为
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
并删除前两个空行:doctype应该在第一行。
这将使IE尊重标准,并像其他浏览器一样工作。