8
7

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のresponsiveでtabletを無効化する

Posted at

bootstrapのresponsive designにおいて、tabletのみを無効にしたい時が、時々あります。
(そうならないようにちゃんとcss書け、という話もありますが)

無効にするときには、bootstrapをbuildする前に、less/responsive.lessを少しいじります。

// MEDIA QUERIES
// ------------------

// Large desktops
//@import "responsive-1200px-min.less"; //コメントアウトする

// Tablets to regular desktops
//@import "responsive-768px-979px.less"; //コメントアウトする

// Phones to portrait tablets and narrow desktops
@import "responsive-767px-max.less";

このようにコメントアウトしてからmakeすると、PC-スマホのみでresponsive designが利用できます。

8
7
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
8
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?