我需要将中间列设置为 100%。css 在下面正常工作,除非我将列宽更改为 100%,然后它会删除其他列的所有宽度。有谁知道为什么?
.SummaryTable td:first-child
{
width: 150px;
}
.SummaryTable td:first-child + td
{
width: 150px; /*100% will remove other col widths*/
}
.SummaryTable td:first-child + td + td
{
width: 175%;
}
这是小提琴