这很奇怪,但我不明白以下CSS用法。
.containertable table
{
...
}
我知道
table.containertable
的意思是class="containertable"
最佳答案
这意味着:
<div class='containertable'>
<table> <!-- This table here or any other table under '.containertable' -->
....
.containertable
类中的任何表都将受到您放入.containertable table {
中的CSS规则的影响。这并不意味着它是直接后代,只是
table
中的任何containertable
元素都会受到影响。这还包括:
<div class='containertable'>
<div class='anotherClass'>
<table> <!-- this is also effected by the CSS -->