In a previous version, the table had visible borders. However, when I added the property text-align:center; to my container, the table did not align to the center. I then tried adding display:inline-block; to the table, which successfully centered it. It looked great in Chrome and Firefox, but unfortunately, it did not display well in IE 11 as the table borders were missing.
table{
margin:2px;
width:200px;
padding:4px;
display:inline-block;
}
After searching on Google, I attempted to adjust the zoom setting in IE 11.
table{
margin:2px;
width:200px;
padding:4px;
display:inline-block;
}
Here is how the table appeared in IE 11: