このタスクを再処理する必要があります テーブルセルに三角形を追加する方法
div を背景にする必要はありません。
<td>
<div style="position: relative;right: 0;top:0;">@Html.ImageContent("triangle_bonus.png", "")</div>
//@Html.DropDownListExtention
</td>
このタスクを再処理する必要があります テーブルセルに三角形を追加する方法
div を背景にする必要はありません。
<td>
<div style="position: relative;right: 0;top:0;">@Html.ImageContent("triangle_bonus.png", "")</div>
//@Html.DropDownListExtention
</td>
試す:
<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/