Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using twitter's bootstrap in jsFiddle

I would like to use Twitter's Bootstrap in one of my fiddles. Since jsFiddle does not offer bootstrap as one of its pre-defined libraries, I am looking for a minified url.

Is there a free minified URL for Twitter's Bootstrap?

like image 929
Adam Matan Avatar asked Jun 22 '13 14:06

Adam Matan


People also ask

Does JSFiddle support Bootstrap?

BootstrapCDN is supported by JSFiddle, you just need to paste in the relevant URLs. Which then allows you to post your HTML/CSS/JS as required.

Does twitter use Bootstrap?

At Twitter, Bootstrap has quickly become one of our many go-to front-end tools when starting new applications and sites.

Is twitter bootstrap responsive?

With Bootstrap 2, we've gone fully responsive. Our components are scaled according to a range of resolutions and devices to provide a consistent experience, no matter what.

What does twitter bootstrap have to do with web sites?

Twitter Bootstrap is a front end framework to develop web apps and sites fast. In modern web development, there are several components which are required in almost all web projects. Bootstrap provides you with all those basic modules - Grid, Typography, Tables, Forms, Buttons, and Responsiveness.


2 Answers

have a look at jsfiddle

@import url('http://twitter.github.com/bootstrap/assets/css/bootstrap.css');

UPDATE

import css or js files from external resources of jsfiddle

you can use bootstrapcdn with specific version of bootstrap e.g 2.3.2 instead of 3.1.1

CSS : //netdna.bootstrapcdn.com/bootstrap/3.1.1/css/bootstrap.min.css

JS : //netdna.bootstrapcdn.com/bootstrap/3.1.1/js/bootstrap.min.js

working JSFiddle for v3.1.1

like image 97
Gökhan Girgin Avatar answered Oct 09 '22 11:10

Gökhan Girgin


Try http://jsfiddle.net/DTcHh/241/

using external resources http://netdna.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css http://netdna.bootstrapcdn.com/bootstrap/latest/js/bootstrap.min.js

** Below Method No More Working but kept if someday something changes**

As of now select jquery 2.1.0 then you will get bootstrap as an option

Bootstrap 3.2.0 Bootstrap 2.3.2

enter image description here

like image 45
Dev Avatar answered Oct 09 '22 11:10

Dev