I've been trying to get my text in the <div class="status_">
container to wrap when the screen size is made smaller.
This works in Chrome, FF, Safari, and Edge but not in IE 10 and 11.
I've looked through other StackOverflow posts on this topic such as IE11 flexbox preventing text wrapping? but it hasn't helped solve my problem.
Is there anyway to get my text to wrap in IE while using flexbox?
/* tr */
.row_content_style {
border-bottom: 1px solid #ccc;
border-top: 1px solid #ccc;
}
/* td */
.row_content_style .lst_td {
vertical-align: middle;
padding: 10px;
}
/* div inside td */
[class*=status_] {
max-width: 1000px;
display: -ms-inline-flexbox;
display: inline-flex;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
}
<table width="100%" class="list_maincol" style="border-collapse: collapse;">
<tbody>
<tr class="row_content_style">
<td class="lst_td">
<div class="status_">
text that should wrap. Curabitur accumsan venenatis nibh, non egestas ipsum vulputate ac. Vivamus consectetur dolor sit amet enim aliquet eu scelerisque ipsum hendrerit. Donec lobortis suscipit vestibulum. Nullam luctus pellentesque risus in ullamcorper. </div>
</td>
</tr>
</tbody>
</table>
Here is a codepen with my code: http://codepen.io/maureenv/pen/VmNBwg
Thank you