Where is bootstrap-responsive.css?

后端 未结 6 604
不知归路
不知归路 2020-12-13 12:12

I know that by default the bootstrap doesn\'t come with the file, but after I customized (I\'ve selected all the responsive features!) I still can\'t see the file. At the do

相关标签:
6条回答
  • 2020-12-13 12:46

    Or you can use directly as below:

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

    0 讨论(0)
  • 2020-12-13 12:49

    look here http://twitter.github.io/bootstrap/scaffolding.html#responsive

    Bootstrap doesn't include responsive features by default at this time as not everything needs to be responsive. Instead of encouraging developers to remove this feature, we figure it best to enable it as needed.

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

    0 讨论(0)
  • 2020-12-13 12:53

    Since Bootstrap 3 you don't need responsive.css anymore. Because it is inside default bootstrap.css.

    Related: https://stackoverflow.com/a/16379181/429938

    0 讨论(0)
  • 2020-12-13 12:56

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

    \bootstrap\css\bootstrap-responsive.css
    
    \bootstrap\css\bootstrap-responsive.min.css
    
    0 讨论(0)
  • 2020-12-13 13:02

    They moved it to a different directory. Try this:

    <link href="http://getbootstrap.com/2.3.2/assets/css/bootstrap-responsive.css" rel="stylesheet">
    
    0 讨论(0)
  • 2020-12-13 13:06
    https://ci.apache.org/projects/openejb/examples-generated/moviefun/src/main/webapp/assets/css/bootstrap-responsive.min.css.html
    
    1. make a file name bootstrap-reponsive.css on your CSS folder
    2. copy all these to that file.
    3. give link to that file on your HTML code
    0 讨论(0)
提交回复
热议问题