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 Framework Bulma,分别是他们的Navbar组件。为此,我需要向 HTML 或 Body 元素添加一个 css 类:
<html class="has-navbar-fixed-top">
如何使用 vue.js 2.0 添加类?
body 和 html 标签位于 index.html 文件中。您只能在此处添加课程。
首先,您不应该在标签上添加任何类html标签。
html
其次,您可以并且应该将该类添加到body您可能在根文件夹或公共文件夹中找到的静态 index.html 文件上的标记。
body
让我知道是否有效:)