如下:
  .itemnotice{ position:absolute; top:expression((document.body.clientHeight-200)+"px"); left:expression((document.body.clientWidth-400)+"px"); background-color:#CCCCCC; filter:Alpha(opacity=90); opacity: 0.90; height:200px; width:400px; }

但是firefox不支持expression表达式操作,所以也可以采用如下办法:
在document的body的onload事件中做如下处理:
  obj=document.getElementById("ACI_itemnotice");   //找到目标
  obj.style.left=(window.document.body.clientWidth-400)+"px";
  obj.style.top=(window.document.body.clientHeight-200)+"px";

相关文章:

  • 2022-12-23
  • 2021-12-15
  • 2022-12-23
  • 2021-09-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-10
猜你喜欢
  • 2021-10-17
  • 2021-06-04
  • 2022-01-31
  • 2021-06-21
  • 2021-12-27
  • 2021-05-21
  • 2021-08-24
相关资源
相似解决方案