2

wicked_pdf gem/plugin 和底层 wkhtmltopdf 是否支持使用 tbody、tr.even 和相应 tr.odd 的 css 对交替列进行条带化?

我的 css 文件中有这个(在公共文件夹中),但它没有正确渲染颜色。

table {
width: 90%;
border: 1px solid #999999;
}

th, td {
    padding: 7px 10px 10px 10px;
}

th {
    border-bottom: 2px solid #111111;
    border-top: 1px solid #999999;
    font-size: 90%;
/*  letter-spacing: 0.1em;
*/  text-align: left;
    text-transform: uppercase;  
}

tbody, tr.even {
    background-color: green;
}

tbody, tr.odd {
    background-color: yellow;
}

目前我在所有单元格中只得到黄色。

css中的交替颜色不渲染

4

1 回答 1

1

尝试

tr.even {
    background-color: green;
}

tr.odd {
    background-color: yellow;
}
于 2012-05-31T19:12:04.577 回答