-
-
Notifications
You must be signed in to change notification settings - Fork 32.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Table] thead border-bottom width doesn't resize when resize window #3687
Comments
can solve it but no good |
I found minimum reproduce code. code<!DOCTYPE html>
<body>
Resize the window and this document wraped and height of this document is changed. So, the table will move but the bottom boder of the table will not move.
<div style="transform: translate3d(0px, 0px, 0px);">
</div>
<table style="border-collapse: collapse;">
<thead style="border-bottom-width: 1px; border-bottom-style: solid;">
<tr>
<th style="position: relative;">
header
</th>
</tr>
</thead>
</table>
</body> browsersThis is reproduced on the Chrome 51.0.2704.103. This is not reproduced on the Firefox 46.0. styles
is used in a
is set in material-ui/TableHeaderColumn.js at master · callemall/material-ui QuestionIs |
There is a limited workaround.
For example:
Demo
|
We have been porting the component on the v1-beta branch. We reimplemented it from the ground-up. While we haven't tested it, I think that the issue is most likely fixed on that branch. Hence, I'm closing it. |
@oliviertassinari This is still broken on V1 branch as of today as I have a Is there any way of fixing this as the ways above no longer work in V1 |
Hello,
I noticed the border-bottom width does not resize when resizing window. To repeat this create simple table and then open browser window as default with small size and put it to fullscreen.
-XDVarpunen
The text was updated successfully, but these errors were encountered: