如何将背景图像设置为具有colspan的表格单元格?

时间:2012-06-09 19:49:22

标签: html css

我使用css设置单元格的背景,但它不适用于整个单元格。

我正在尝试将背景图像设置为第一个和最后一个<TR>,但它显示为这样。

我正在尝试将.first类属性应用于第一个和最后一个<tr>。我应该怎么做才适用于TR?

 <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <style type="text/css">

 .excel{
         background:url(smallimage/excel.jpg);
          background-size:24px 24px;
          background-repeat:no-repeat;
          position: relative;
           margin:3px;
           left: 2px;
            top: 1px;
        }


        td.yellostar{
        background-image: url(smallimage/yellowstar.jpg);  /* forward slash for the path */
        width: 20px; /* use you own image size; */
        height: 20px; /* use you own image size; */
        background-repeat: no-repeat;
        background-position: center;
        text-align: center;
        vertical-align: top;
        } 
        .first{
        background-image:url(smallimage/trbackgr.jpg);
        background-repeat: repeat-x;
        }

    </style>
    </head>

    <body>
    <table width="95%" border="1" cellspacing="0" cellpadding="0">
        <tr class="first">
        <th colspan="2" class="first">chapter #|chapter Name</th>
        <th>Linkage</th>
        <th>project<br/>count</th>
        <th>Task<br>count</th>
        <th>issues<br> Open/All</th>
        <th>Action</th>

      </tr>
        <tr >
        <td>05</td>
        <td><div class="excel" > &nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<u>Chapter 5:Data of Information</div></td>
        <td class="yellostar" ></td>
        <td><p align="center">3</p></td>
        <td><p align="center">21</p>
        </td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>06</td>
        <td><div class="excel">&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<u>Chapter 6:Data Tabels and Amortization Tabels</div></td>
        <td class="yellostar">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>07</td>
        <td><div class="excel" >&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<u>Chapter 7:Data consolidation,Links and Formula Auditing</div></td>
        <td class="yellostar">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>08</td>
        <td><div class="excel" >&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<u></td>
        <td class="yellostar">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>09</td>
        <td><div class="excel" >&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<u></div></td>
        <td class="yellostar">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr>
        <td>10</td>
        <td><div class="excel" >&nbsp&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp<u></div></td>
        <td class="yellostar">&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
        <td>&nbsp;</td>
      </tr>
      <tr class="first">


        <td colspan="7" class="first" >&nbsp;</td>
      </tr>
    </table>
    </body>
    </html>

1 个答案:

答案 0 :(得分:0)

您可以使用伪类:first-child:last-child。 看看我的例子:jsfiddle

:last-child不是跨浏览器,IE需要修复。

指定背景w3schools的参考图像时出错。