0
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.

@media ミス備忘録

0
Posted at

メディアクエリでどうしてもサイズがフォントサイズが変更されない時に
分かった対処方法


.p-header__nav-menu__closelist .c-header__nav-menu__closelist a {
    color: #FFFFFF;
    font-size: 12px;
}

このようなCSSの施一計をしている場合は、

@media (min-width:768px) {
.c-header__nav-menu__closelist a {
    font-size: 12px;
}
}

このように設計してまうと、どこの親要素のaタグなのか理解してもらえず
反映されない。

@media (min-width:768px) {
.p-header__nav-menu__closelist .c-header__nav-menu__closelist a {
    font-size: 12px;
}
}

この書き方じゃないと反映されない。

0
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
0
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?