2
1

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 5 years have passed since last update.

Bootstrapでnav-darkを指定しているのにaタグの文字色が青になってしまう

Posted at

公式のドキュメントを参照したつもりで、以下のように書いてしまいました。

header.php
<header class="navbar navbar-expand navbar-dark bg-dark">
<a class="nav-link" href="login.php">HOME</a>
</header>

ドキュメントと同じクラス名を指定したのに、HOMEの文字が青になってしまいます。
開発ツールで_navbar.scssを確認しました。(以下抜粋したものです)

.navbar-dark {
  .navbar-nav {
    .nav-link {
      color: $navbar-dark-color;

      @include hover-focus() {
        color: $navbar-dark-hover-color;
      }

      &.disabled {
        color: $navbar-dark-disabled-color;
      }
    }
  }
}

.navbar-darkの中の.navbar-navの中の.nav-linkに文字色が適用されるのですね。
クラス名を指定したら、無条件にスタイルがあたるものだと思い込んでいました。
これで適切な色になります。

header.php
<header class="navbar navbar-expand navbar-dark bg-dark">
 <ul class="navbar-nav">
  <a class="nav-link" href="login.php">HOME</a>
 </ul>
</header>
2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?