标签: html css
我正在尝试将背景图像应用于表格行,但它会在单元格中重复图像。
#tableid tr:hover{ background: url("images/tablerow.png"); height:45px; }
HTML
<table class="table" id="tableid"> <tr> <td>first cell</td> <td>second cell</td> <td>third cell</td> </tr> </table>