I have an MVC4 project with a global.css class and i have added recently bootstrap but result that in my global.css class i have some classes that are with the same name so i decided to make a bootstrap_migration.css where i put some of the bootstrap classes with the prefix class .bt and in my html i put something like class="bt container" and everything works fine.
Something like this on my bootstrap_migration.css:
.bt .jumbotron {
padding: 30px;
margin-bottom: 30px;
font-size: 21px;
font-weight: 200;
line-height: 2.1428571435;
color: inherit;
background-color: #eeeeee;
}
But do i have a better way to do this?