如何让一个DIV永远静止在屏幕某处
如何让一个DIV永远静止在屏幕某处,即使滚动条滚动也静止着
------解决方案--------------------这个是需要javascript帮忙的,你才给这么一点分数,谁肯告诉你啊...   
 请教别人问题要表示你的诚意...     
 ^_^       新年快乐,,恭喜发财!!
------解决方案--------------------用CSS做: 
 具体: 
 #fixDiv { 
 position:fixed; 
 background:#CC0033; 
 width:200px; 
 height:300px; 
 top:200px; 
 left:100px; 
 } 
 #content { 
 	height: 1500px; 
 } 
 -->  
  </style>  
  </head>    
  <body>  
  <div id= "fixDiv ">  </div>  
  <div id= "content ">  </div>
------解决方案-------------------- <script type= "text/javascript ">  
    function divY(){ 
      var oDiv=document.getElementById( "mydiv "); 
      oDiv.style.top=100; 
      oDiv.style.left=100; 
 }   
 window.onscroll=divY; 
  </script>  
  <div id= "mydiv " style= "position:absolute; width:30px; height:30px; background-color:#f00 ">  </div>      
 提供个思路你试试吧!