当页面内容滚动时,我正在利用 Foundation 5 的 Magellan 将标题固定到窗口顶部。但是,我没有使用到达点。
通常我的 HTML 如下所示:
<article>
<header data-magellan-expedition="fixed">
<h3>title</h3>
</header>
</article>
但是,当麦哲伦被解雇时,来源变为:
<article>
<header data-magellan-expedition-clone style>
<h3>title</h3>
</header>
<header data-magellan-expedition="fixed" style="position: fixed; top: 0px;">
<h3>title</h3>
</header>
</article>
Foundation 允许设置一个活动类,但因为我没有使用到达点,所以我无法使用该功能。
如何<header data-magellan-expedition="fixed" style="position: fixed; top: 0px;">
在解雇后将班级设置为唯一?
或者,如何在 CSS 中专门调用它?
谢谢你的帮助。