我有定位身体背景的问题。它就像:
<script type="text/javascript">
<!--body id="body" style="
text-align:center;
background-color:#031a43;
background-image : url('design/bgFrontPage.jpg');
background-repeat:no-repeat;
background-position: top center;" //-->
</script>
在除IE 9之外的所有浏览器中都能正常工作,其中bg向左移动。
有什么想法吗?
答案 0 :(得分:0)
我在我的页面中尝试此代码:
<head>
<title></title>
<style type="text/css">
.bg
{
text-align: center;
background-color: #031a43;
background-image: url('Styles/166894621.jpg');
background-repeat: no-repeat;
background-position: top center;
}
</style>
</head>
<body class="bg">
</body>
背景图片位于中心。
答案 1 :(得分:0)
我希望IE9 / any可以通过在html的头部添加以下meta行来呈现为IE8
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE8"/>