0๐
I am using classes mentioned here
https://www.tutorialspoint.com/bootstrap/bootstrap_responsive_utilities.htm
And its working with inbuilt bootstrap css node modules in laravel 5.3
0๐
The import from laravel is Bootstrap v3.
The classes you are referring to are from Bootstrap v4. If you want to use Bootstrap v3 remove the @import
that laravel provides.
If you do this you have to import Bootstrap v4 yourself, which can be done by downloading the files and including it in your <head></head>
, using the gulpfile , using a CDN ,..
I would recommend still using Bootstrap v3 . In that case just leave everything alone and remove those CDN links that you have now. And use the classes provided in the Bootstrap v3 documentation:
http://getbootstrap.com/css/
- [Vuejs]-Rendering escaped HTML from api call with vue.js
- [Vuejs]-Vue.js trying to call an template which don't exist
Source:stackexchange.com