Is there any ready to use Bootstrap css file with prefix

css, html, twitter-bootstrap-3

Solution

If you don't use SASS or LESS, you can use `http://www.css-prefix.com/`

- Make a short prefix (my recommendation)

- If you use a space, then it will be a parent class.

- Paste in the compiled version of the CSS file

- Click the run button

Result snippet:

.tb.col-xs-1, .tb.col-sm-1, .tb.col-md-1, ...

Problem

I have web application which uses `Foundation`. I am not good at foundation and i have to develop few pages where i want to use `Bootstrap` but i dont want to mix with other company css. SO i was looking if i can wrap all bootsrap inside some class like `bootstrap`. so that if i want to use bootsrap . i can use like ``` <div class="bootstrap"> <table class="table"> </div> ``` I don't know sass and all that. is it possible to download some bootstrap css from online with some pre defined prefix

Original source

Related problems