Where is bootstrap-responsive.css downloaded?

I know that by default bootstrap does not come with the file, but after I configured (I selected all the responsive functions!), I still cannot see the file. The docs say I have to do this on the main tag:

<meta name="viewport" content="width=device-width, initial-scale=1.0"> <link href="assets/css/bootstrap-responsive.css" rel="stylesheet"> 

But actually I don’t even have folders. I have:

 \bootstrap \img \css \js 

Can anybody help me?

+49
twitter bootstrap
Dec 03 '12 at 16:11
source share
6 answers

Starting with Bootstrap 3, you no longer need responseive.css. Because it is inside default bootstrap.css.

Bound: stack overflow

+105
Sep 14 '13 at 9:46 on
source share

Download http://twitter.github.com/bootstrap/assets/bootstrap.zip and unzip it.

 \bootstrap\css\bootstrap-responsive.css \bootstrap\css\bootstrap-responsive.min.css 
+22
Dec 04
source share

look here http://twitter.imtqy.com/bootstrap/scaffolding.html#responsive

Bootstrap does not currently include default responsive features because not everything needs to be responsive. Instead of encouraging developers to remove this feature, we believe that it is best to include it as necessary.

So, if you need bootstrap-responsive.css, you should download it from bootstrap-source, from here, for example: http://twitter.imtqy.com/bootstrap/index.html

+5
Jun 12 '13 at 9:41
source share

Or you can use directly as shown below:

 <link href="http://twitter.github.com/bootstrap/assets/css/bootstrap.css" rel="stylesheet"> 

+4
Mar 27 '13 at 2:19
source share

They moved it to another directory. Try the following:

 <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet"> 
+1
Aug 26
source share
 https://ci.apache.org/projects/openejb/examples-generated/moviefun/src/main/webapp/assets/css/bootstrap-responsive.min.css.html 
  • create bootstrap-reponsive.css file name in your CSS folder
  • copy all this into this file.
  • provide a link to this file in your HTML code
0
Apr 04 '14 at 4:51
source share



All Articles