如何在HTML中创建支持所有(IE,safari,firefox)浏览器的表格?

时间:2010-07-08 06:53:34

标签: html

表行背景颜色在IE中支持,但在safari中不支持

2 个答案:

答案 0 :(得分:2)

HTML:

 <table id="mytable">
   <thead> <!-- Optional -->
      <tr>
         <th></th>
      </tr>
   </thead>
   <tbody>
      <tr>
         <td></td>
      </tr>
   </tbody>
   <tfoot> <!-- Optional -->
      <tr>
         <td></td>
      </tr>
   </tfoot>
 </table> 

CSS:

 table#mytable { background-color: #004455; }

你也可以使用内联样式,但我不打算推​​荐它们,因为听起来你需要学习如何以正确的方式做事情,然后才允许你以错误的方式打电话。

答案 1 :(得分:0)

<table>
  <tr class="color_red">
    <td></td>
  </tr>
  <tr class="color_green">
    <td></td>
  </tr>
</table

<style>
tr.color_red
{
    background-color:red;
}

tr.color_green
{
    background-color:green;
}
</style>