对于IE6,任何人都有display: table
和display: table-row
的解决方案吗?
这是我的css代码:
.menu {
display: table;
width: 708px;
margin: 0 0 1em 0;
padding: 0;
list-style: none;
z-index:99;
}
.menu li {
display: table-cell;
z-index: 9999;
}
.menu li a.mainnav{
display: block;
color: #000;
text-align: center;
text-decoration: none;
font-weight: bold;
border-right: 1px solid #000;
}