I've got this piece of HTML:
<html>
...
<iframe>
#document
<html>
...
<div className='change-me'></div>
...
</html>
</iframe>
</html>
That iframe is taken from stripe React element, I want to access something inside it and change its CSS.
I've dealt before with libraries that offer reusable React components, and managed easily to change every CSS detail there.
Problem: But here I can change nothing.
.change-me { background: red } // This one doesn't work
Maybe it's the fact that the component is making it's own html document, maybe I'm looking at the problem from the wrong end...