Jump to content
  • 0

В FF не работает относительное позиционирование блоков


ProGGGer
 Share

Question

Собственно код следующий. Требуемое действие это передвижение блока дива при шелчке по ссылке на который висит JavaScript.

в IE и в Opera все работает в FF 2.0.0.13 вообще никак, Js включен.

<html>
<head>

<title>Относительное позиционирование</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

<script language="javascript">
flag=0;
</script>
</head>

<body >
<div style="margin-left:100; width:200; height:50;
border:1 dotted;" >

<div id="kuku" style="border:3 solid; left:50;
position:relative; top:0; width:120">

<a href="java script:
if (flag==0)
{
window.document.all.kuku.style.pixelLeft=-50;
flag=1;
}
else
{
window.document.all.kuku.style.pixelLeft= 50;
flag=0;
};
void(0);
">
Сдвинуть текст
</a>
</div>
</div>

</body>
</html>

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
<html>
<head>

<title>Относительное позиционирование</title>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">

<script language="javascript">
flag=0;
</script>
</head>

<body >
<div style="margin-left: 100px; width: 200px; height: 50px; border: 1px dotted #000;" >

<div id="kuku" style="border:3px solid red; left:50px; position: relative; top:0px; width:120px;">

<a href="java script:
if (flag==0)
{
document.getElementById('kuku').style.left = -50+'px';
flag=1;
}
else
{
document.getElementById('kuku').style.left = 50+'px';
flag=0;
};
void(0);
">
Сдвинуть текст
</a>
</div>
</div>

</body>
</html>

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy