I have implemented an accordion control extender on my webpage, and it is functioning properly. I added a CSS file to display it as a list, which is working perfectly in all browsers except for IE compatibility view. In IE compatibility view, the list-style-type:square; is misaligned and an extra square is added to the top. Is this a bug in IE compatibility view?
The CSS code being utilized is as follows:
.accordionHeader {
border: 1px solid Silver;
color: Navy;
background-color: White;
font-family: Arial, Sans-Serif;
font-size: 12px;
font-weight: bold;
padding: 5px;
margin-top: 5px;
cursor: pointer;
height:15px;
display:list-item;
list-style-position:inside;
list-style-type:square;
}
Are there any alternative methods to display the accordion as a list without encountering issues in IE compatibility view?
Thank you in advance.