<style>
#news_div{
background-color: red;
width:800px;
height:40px;
padding:0;
margin:0;
position: fixed;
z-index: 1;
}
</style>
</head>
<body>
<div id="news_div"> The news </div>
<script>
$( function(){
$("#news_div").offset({
top : $(window).height(),
})});
答案 0 :(得分:0)
好的,top
属性指定DIV
顶部到窗口顶部的距离。如果您将DIV
的{{1}}属性设置为窗口top
,则top
正好位于窗口之外或可见区域之外。
您必须减去DIV
本身的高度才能将其置于底部:
DIV