I am attempting to do the following:
.bootstrap-scope {
@import "bootstrap.min.css";
}
I know bootstrap.min.css
is in the proper place because placing @import "bootstrap.min.css";
at the top of the css page works fine.
Anyways, the point is to be able to scope out what is affected by bootstrap. I would like bootstrap to only be applied to the enclosing div
<div class="bootstrap-scope">
...
</div>
Any ideas? This seems like it should be straightforward.
this post suggested to put the import inside a class.. Are there any alternatives?