Вот такой код, но почему-то в эксплорере работает, а в FF нет.
Помогите пожалуйста разобраться
Код:
<!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">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251" />
<link rel="stylesheet" href="style.css" />
<title>Untitled Document</title>
<script language="JavaScript">
function func() {
if (window.innerWidth){
w=window.innerWidth;
}
if (document.documentElement && document.documentElement.clientWidth){
w=document.documentElement.clientWidth;
}
if (document.body){
w=document.body.clientWidth;
}
conteyner1.style.height = w + 'px';
conteyner1.style.width = w + 'px';
}
</script>
</head>
<body onLoad="func();" onResize="func();">
<div id="conteyner1">
<div id="conteyner2"><center><span><a href="#" onclick="func();">Проверка</a></span></center></div>
</div>
</body>
</html>
Код:
/* CSS Document */
*{
font-size: 100%;
}
body{
position: fixed;
padding:0px;
margin:0px;
background:#ffffff;
font-family: Arial, Helvetica, sans-serif;
color:#000000;
}
span{
border:double;
}
#conteyner1{
position: absolute;
background-color: #FFD3FF;
}
#conteyner2{
position: absolute;
width: 50%;
height: 50%;
background-color: #D3D3D3;
}