Is there a way to easily separate specific parts of MyCSS.css and Bootstrap4.css?
I'm having issues with Bootstrap breaking my CSS, but I still want to use certain components from Bootstrap4.
While I know how to extract portions of Bootstrap4 CSS code, it's quite exhausting to search for them one by one.
<link rel="stylesheet" href="Bootstrap4.css">
<link rel="stylesheet" href="MyCSS.css">
<body>
<!-- where I only want to apply MyCSS.css styles -->
<div>
...
</div>
<!-- where I only want to apply Bootstrap4.css styles -->
<div>
...
</div>
</body>