我正在尝试制作类似于披萨机的东西。
本质上,我要做的就是在另一个图像上添加一个半透明图像。
我以为我可以通过 CSS 和 z-index 属性来实现这一点,但我遇到了一些问题。
图片覆盖得很好,但我无法让它们在我的生命中定位在表格单元格的中心。
这是我想出的。但是定位会将图片移出表格单元格。
<table style="width:400px" border="1">
<tr>
<td align="center">
<div style="position: fixed; z-index:100">
<asp:ImageButton ID="imgbtn_pizzabase" ImageAlign="Middle" ImageUrl="~/SiteImages/pizza_test.png" runat="server" />
</div>
<div style="position: fixed; z-index:5000">
<asp:ImageButton ID="ImageButton1" ImageAlign="Middle" ImageUrl="~/SiteImages/findme.png" runat="server" />
</div>
</td>
</tr>
.
.
.