0

当页面内容滚动时,我正在利用 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 中专门调用它?

谢谢你的帮助。

4

1 回答 1

0

似乎在 css 中执行此操作的方法是:

header[style="position:fixed;"] { ... }

没想到这么容易!

于 2014-07-11T11:33:57.030 回答