是否可以将div或表设置为完全卡住?

时间:2016-01-24 18:53:19

标签: html css position

正如我的标题所说,是否有可能设置一个div或桌子卡在它的位置。我的问题是我使用jquery淡入图像但是在开始时图像被隐藏,图像下的标题飞到顶部,但我希望它留在它的位置..

2 个答案:

答案 0 :(得分:0)

你去了:

#example {
   position: fixed;
}

答案 1 :(得分:0)

  <head>    
      <style type="text/css">
            div
            {
                position: fixed;
                // the left,down,right,top are used to adjust the location of your fixed div.
                left: 50px;
                down: 50px;
                right: 50px;
                top: 50px;
            }
      </style>
 </head>

 <body>
      <div>       </div>
 </body>