3

このタスクを再処理する必要があります テーブルセルに三角形を追加する方法

div を背景にする必要はありません。

    <td>
     <div style="position: relative;right: 0;top:0;">@Html.ImageContent("triangle_bonus.png", "")</div>
//@Html.DropDownListExtention
    </td>

ここに画像の説明を入力

4

1 に答える 1

8

試す:

<td style="position: relative;">
<div style="position: absolute;right: 0;top:0;">@Html.ImageContent("triangle_bonus.png", "")</div>
</td>

html を次のように変更してみてはいかがでしょうか。

<td class="triangle">
<div>@Html.ImageContent("triangle_bonus.png", "")</div>
</td>

そして、これをあなたのhtmlの頭に追加します:

<style>
td.triangle {position:relative}
td.triangle div {position:absolute; right:0; top:0;}
</style>

たとえば、これを見てください: http://jsfiddle.net/Juvcx/

于 2013-01-24T13:36:20.120 に答える