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】hidden-smはもう動かない!最新版は〇〇を使え!スマホで表示しない方法

Posted at

はじめに

最近、bootstrapにハマってます。
クラスを書くだけで簡単にそこそこのデザインが作れちゃう。
Twitter様、ありがとうございます。

ところで、APIの件はどうなるんでしょうね....
有料化は嫌です。

閑話休題、hidden-smは動きません。

この前、レスポンシブサイトを作っていた時のこと。
レイアウトの関係で、スマホでは表示したくない<div>がありました。
調べてみると、どうやらhidden-smをクラスに追加すれば良いとのこと。

コードに追加して、動かしてみるも何も変化なし。
CDNに変えてみたり、内部に書き込んでみたり、いろいろ試しましたが、変化はありませんでした。

d-none d-sm-blockを使おう

どうやら、bootstrap4でhidden-smは廃止されたようです。
代わりに使えるのが、

.d-none.d-sm-block

の二つのクラス。
これをつけることで、スマートフォンで表示しないようにできます。
なお、スマホのみ表示する場合は

.d-block.d-sm-none

らしいです。

終わり。

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?