2014-04-04 64 views
0

時,我有如下表:亮度小區徘徊

<table class="table table66 table-bordered"> 
<thead> 
    <tr> 
     <th>#</th> 
     <th>name</th> 
     <th>age</th> 
    </tr> 
</thead> 
<tbody> 
    <tr> 
     <td>1</td> 
     <td>Alan</td> 
     <td>11</td> 
    </tr> 
</tbody> 

我想強調,我徘徊在電池,而不是整個行。我沒有成功嘗試這樣做:

td.table66:hover { 
      background-color: #C0C0C0; 
} 

回答

4

嘗試

.table66 td:hover { 
    background-color: #C0C0C0; 
} 

你正在做樣品中什麼是試圖選擇一個td其中也有類table66,當它是你的table這有班級。

+0

你打我吧。哈哈! – witherwind

+2

是的......這是有道理的。這很尷尬。需要更多的咖啡才能醒來 – Cornwell

+0

+1瞭解更多咖啡 – Starscream1984

0

試試這個。

.table66 td:hover { 
    background-color: #C0C0C0; 
}