css – 表内有不同风格的表?

前端之家收集整理的这篇文章主要介绍了css – 表内有不同风格的表?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何为两个表格单元格制作两种不同的样式,其中一个单元格位于另一个表格内?

我有两种CSS样式:

table.style1 { /* any styles */}
table.style1 td { /* any styles */}

table.style2 { /* any styles */}
table.style2 td { /* any styles */ }

代码我有这样的somting:

<table class="style1">
   <tr>
      <td>
         <table class="style2">
            <tr><td>bla bla<td></tr>
         </table>
      </td>
   <tr>
</table>

结果是 – 所有< td>第二个表格(带有style2)的表格单元格与style1 …!

当桌子里面有桌子时,如何制作两个不同的css窗框?

解决方法

试试这个代码.我相信它运作正常.
table.style1 { /* any styles */}

table.style1 td { /* any styles */}

table.style1 table.style2 { /* any styles */}

table.style1 table.style2 td { /* any styles */}
原文链接:https://www.f2er.com/css/215144.html

猜你在找的CSS相关文章