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