我需要使用图像作为表格背景(整个行背景将起作用)。 我试过这个:
.cellTableOddRow {
background-image: url(image.jpg);
background-repeat: repeat-y;
width: 300px;
}
但它将图像放在每个单元格中。 这可能吗?
很多!
答案 0 :(得分:0)
这很简单:
图片应位于'cellTableWidget'
中.cellTableWidget {
background-image: url(../img/bgtablas.jpg);
background-repeat: repeat-y;
width: 300px;
}
并且该行必须“删除”其样式:
.cellTableOddRow {
background: none;
background-image: none;
}