I'm using the bootstrap 4.0 minified css on an application site I want to inject over the top of another site.
Here is the file: http://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-alpha/css/bootstrap.min.css
The issue I'm having is the following styling is affecting the site sitting behind my application because of these styles:
*,
:after,
:before {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
I've tried to modify the CSS so it targets only everything within my wrapping div like so:
.prefix-wrapper * {
-webkit-box-sizing: inherit;
box-sizing: inherit;
}
This didn't work - any ideas?