How to make input 100% width and fit it into parent? It worked before v.23 but is broken now. As I understand box-sizing: border-box; should be used but it seems to be not supported.
In my case I have something like:
<div style="width:100%; box-sizing: border-box; border: 1px solid red;">
<input type="text" style="display: block; width: 100%;" />
</div>
Now it looks like this:
PS: One more question - is there any way to subscribe to notifications about breaking changes?