0

我一直在寻找一个示例来创建一个在页面向下滚动时将保持静态的标题。就像这个例子一样。

我查看了这个这个和其他一些,但没有找到正常工作的示例。

提前致谢

<!DOCTYPE html> 
<html> 

<head>
    <style>
    #header { height: 100px; background:#EEEEEE; }
    #footer { height: 100px; background:#EEEEEE; }
    #content { height: 1000px; background:#CCCCCC; }
    </style>

    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
</head>
<body>

    <div id="container">
      <div id="header">Header</div>
      <div id="content">Content</div>
      <div id="footer">Footer</div>
    </div>

</body> 
</html>
4

2 回答 2

1

CSSposition:fixed是您正在寻找的:

 #header { height: 100px; background:#EEEEEE;top:0;left:0;position:fixed }
于 2012-12-14T10:34:38.747 回答
1

没有必要为此使用 jQuery。这可以通过cssposition属性轻松实现。

于 2012-12-14T10:35:00.870 回答