: 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>
それを作る方法について何か提案はありますか?
どうもありがとうございました!