Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否有一个 HTML 标签可以帮助我滚动标题和滚动条?我在一些帖子中注意到它说 POSITION:FIXED,但我不确定如何将它嵌入到 html 中?另外,我想把这些 HTML 放在 JAVA 代码中,所以请帮帮我。
非常感谢!!
你必须把“位置:固定;” 进入你的CSS。例如,如果您的标题是:
<h1 class="title">Title</h1>
你的CSS必须是这样的:
.title { position: fixed; }
如果您没有 css 文件,则可以使用内联样式:
<h1 style="position: fixed;">Title</h1>