Reputation: 1705
I have a JSFiddle here http://jsfiddle.net/0b3qcg0g/2/ (table positioned on right side of its container).
This works on every browser except IE9-IE10. Problem is simple: on IE9 and IE10 I table wont position itself correctly.
Here are solutions I cannot use:
display: block;
for table because I need table
layout.Can anyone please help me?
Edit:
Hours of hitting my head on a wall and just when I ask for help I figure out the solution. For somebody else who has this same problem: jsfiddle.net/0b3qcg0g/3
Upvotes: 0
Views: 863
Reputation: 64
Have you tried adding table-layout: fixed
to the table styles? That seems to work for me in IE10:
http://codepen.io/a_double/pen/JoXJmV
Upvotes: 0