I have link (button actually) inside a TD, but its completely hidden in IE 6 and 7:
.btn-delete {
position: relative;
width: 32px;
height: 31px;
text-indent: -1000em;
background:#dd0 url(../img/button.png) no-repeat;
/*.float: left;*/
display: inline-block;
display: -moz-inline-box;
-moz-box-orient: vertical;
vertical-align: top;
zoom: 1;
*display: inline;
}
...but if I add float:left
to it, it shows fine. How do I fix it?
Many thanks!