1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Bootstrapのnavbarを固定する方法

Last updated at Posted at 2022-10-27

上で固定する場合は「fixed-top」をnavタグに指定する。

<nav class="navbar navbar-light bg-light fixed-top">
  <div class="container-fluid">
    <span class="navbar-brand mb-0 h1">Navbar</span>
  </div>
</nav>

下で固定する場合は「fixed-bottom」をnavタグに指定する。

<nav class="navbar navbar-light bg-light fixed-bottom">
  <div class="container-fluid">
    <span class="navbar-brand mb-0 h1">Navbar</span>
  </div>
</nav>
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?