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.
我正在尝试创建一个静态标题,使我的搜索栏、迷你购物车和标题图片在滚动时固定在顶部。
我在哪里可以找到 CSS/HTML 属性来编辑它?
该网站是 nkdscty.com 供参考。
谢谢
简单的。使用 cssposition:fixed规则。用于top:0将其固定到顶部。
position:fixed
top:0
header{ position:fixed; top:0; }