: IE
: 火狐
我正在尝试创建一个可能会水平改变大小的箭头。它应该使用代表以下内容的 3 个图像:< --- >
我正在尝试使用 div 和 css 来做到这一点,但它在 IE 中不起作用。身体图像没有居中,看起来像是一个下划线。但这不会发生在 Firefox 或 chrome 中,身体居中,并与左右图像的尖端对齐。< ____ >:IE(错误)< ----- >:Firefox(正确)
我有以下内容:
.bodyArrow {
width: 38px;
background: url("../../images/ArrowBody.png") repeat-x center;
height: 5px;
}
.arrowLeft {
height: 5px;
padding-left: 38px;
background: url("../../images/ArrowLeft.png") no-repeat 0 0;
}
.arrowRight {
height: 5px;
font-style: normal;
padding-right: 3px;
background: url("../../images/ArrowRight.png") no-repeat 100% 0;
}
<table>
<tr>
<td> something </td>
<td>
<DIV class="bodyArrow">
<DIV class="ArrowLeft">
<DIV class="ArrowRight">
</DIV></DIV></DIV>
</td>
<td> something </td>
</tr>
</table>
关于如何制作它的任何建议?
非常感谢你!