我制作了一个定价表,当悬停时会改变行的背景。由于我使用它的方式,我遇到了两个问题。
我使用 3 行跨度来按住购买按钮,因为我希望它在中心与左侧的列垂直对齐。我不得不使用 !important 在翻转时保持背景为白色。固定的。
当您翻转购买按钮单元格时,它会突出显示第一行。这是我不想要的。我已经尝试了各种各样的事情并重新安排了事情,并且在不删除 3 行跨度的情况下无法提出任何解决方案。
<table>
<tr>
<th colspan="3">title text</th>
</tr>
<tr>
<td>amount</td>
<td class="pricing">price</td>
<td class="purchase" rowspan="3">purchase button</td>
</tr>
<tr>
<td>amount</td>
<td class="pricing">price</td>
</tr>
<tr>
<td>amount</td>
<td class="pricing">price</td>
</tr>
</table>
table{
margin:.5em 0 1em 0;
width:100%;
font-size:15px;
}
table th{
padding:0px 0 10px 5px;
}
table td{
padding:2px 5px;
}
table td.purchase{
text-align:right;
width:150px;
vertical-align:middle;
background:#ffffff !important;
}
table td.pricing{
width:130px;
border-left:5px #ffffff solid;
}
table td.details {
padding:0 35px 0 15px;
}
table tr:hover td
{
background-color: #ebf1f6;
}