Reputation: 669
Question may seem weird, but I want to build the Single Page Application with Responsive Web Design technique in two separate ways (too see and learn the differences between using framework vs plain programming language):
I don't want to use jQuery explicitly but I read, that Boostrap requires it to work properly. However AngularJS has it's own kind of implementation of jQuery, so instead of Boostrap it has to be Boostrap UI (to exclude conflict with jQuery).
How to do it then, to make CSS code very similar in both ways (using Angular vs plain JS), when Angular "prefers" Boostrap UI rather than Boostrap? Is Boostrap UI CSS code different than CSS code in Boostrap (I mean using their classes to style HTML elements)?
I want to have very similar or pretty identic CSS code in both ways. So, is it better then to use Boostrap UI when coding SPA with plain JS, because it's preffered for Angular?
Upvotes: 1
Views: 185
Reputation: 1378
Angular UI does'nt contains the Bootstrap CSS : it's just a rewriting of some Bootstrap JS components without JQuery and with support of Angular JS directives.
You must include the "real" bootstrap.css file, and so your css code will be identical
Upvotes: 1