Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we apply tailwind CSS and react-bootstrap in the same project?

I am working in my recent project. I want to add bootstrap and tailwind-CSS as an experiment in my project.

like image 552
Raju Avatar asked Apr 28 '26 12:04

Raju


1 Answers

I am also kind of new to Stack Overflow but there is an example in another thread. Here: Can use both Tailwind css and Bootstrap 4 at the same time?

TL;DR It is possible but it is not recommended.

How to solve conflicts between classes? The link aformentioned contains a solution that should work since it was the accepted answer.

// tailwind.config.js
module.exports = {
   prefix: 'tw-',
}
like image 180
Kypps Avatar answered May 01 '26 17:05

Kypps