:IE
:火狐創建箭頭CSS和背景圖像
我試圖創建水平可能會改變大小的箭頭。它應該使用代表以下3個圖像:< --->
我試圖用div和css做到這一點,但它不在IE中工作。身體圖像不居中,看起來像是下劃線。但是,在身體居中的firefox或chrome中不會發生這種情況,並且會與左側和右側圖像的頂端對齊。 < ____>:IE(錯誤) < ----->:火狐(右)
我有以下幾點:
.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>
如何使它將有什麼建議?
非常感謝!
不工作在什麼地方? – CoffeeRain