Long tab names should wrap in Internet Explorer 11.
Long tab names don't wrap.
Viewing the Material UI tabs with wrapped fields demo in IE11 immediately shows the issue.
https://material-ui.com/demos/tabs/
A slim majority of our users are corporate users who are required to use IE11, so it's important for us to have as much visual parity as possible between IE11 and non-IE11 browsers.
| Tech | Version |
|--------------|---------|
| Material-UI | v1.3.0 |
| React | |
| Browser | |
| TypeScript | |
| etc. | |
@amysutedja Nice catch, you should be able to add width: 100% to this style rule in order to solve the problem:
https://github.com/mui-org/material-ui/blob/5c70845cc4d60918c528f3aa58416ed8851a259c/packages/material-ui/src/Tab/Tab.js#L82
Do you want to work on it? :)
P.S. it seems we are using more divs than needed. We could try to remove some intermediate elements.
I can pick this up if that's ok
Sure :)
Got a pull request here. #13230
I've not done one of these before so not sure if it's done right. Looks like it's failed its CI but I think that's expected due to the change.