I am facing an issue with getting a border to display on a table in Internet Explorer versions IE6, IE7, and IE8. The border is showing up fine in Chrome and Firefox but not in the mentioned IE versions. Below is the CSS code that I have been using:
#infoTable {
width:500px;
margin-left:auto;
margin-right:auto;
border-collapse:collapse;
border-width:thin !important;
border-style:solid !important;
}
#infoTable td {
max-width:150px;
padding-left:5px;
padding-right:5px;
font-size: 10px;
padding-bottom:15px;
border-collapse:collapse;
border-width:thin !important;
border-style:solid !important;
}
I have tried adding the !important tags in multiple attempts to resolve this issue without success. Any guidance or assistance on how to make this work would be greatly appreciated.
Thank you,
Eric R.