A rendering problem in Microsoft Edge when using <table class="table"> with columns e.g.
<table class="table">
<thead>
<tr class="row">
<th class="col-2">column 1</th>
<th class="col-3">column 2</th>
<th class="col-7">column 3</th>
</tr>
</thead>
</table>
This renders good in Firefox and Chrome, but not in MS Edge.
See this SO post. That guy has included a jsfiddle, which is tested with alpha-6. However this still applies to beta1.
Don't use v4's row and column classes on table elements鈥攊t'll undo the table display styles from the browser and make them flexbox.
Then what is the recommended approach for the same results?
@mdo
The discussion in #863 contains some workarounds that still do the job here.
Most helpful comment
Then what is the recommended approach for the same results?