[Vuejs]-Responsive class is not working in laravel 5.3

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/

Leave a comment