我正在尝试在 td 上完成悬停触发器,这将更改类“selectTemplate”更改的整个背景。但是目前发生的事情是 -{{description}}
更改正确,但{{name}}
保持不变。
我希望{{name}}
&{{description}}
在悬停时都改变。
HTML
<table class="templateList templatepolicy-table">
<thead>
</thead>
<tbody>
{{#items}}
<div id="TemplateItem">
<tr>
<td>
<div id="{{sequence}}" class="selectTemplate">
<div class="TemplateName">
{{name}}
</div>
{{description}}
</div>
</td>
</tr>
</div>
{{/items}}
</tbody>
</table>
CSS
table.templatepolicy-table
{
width: 100%;
border-width: 0px;
border-spacing: 5px;
border-style: none;
border-color: black;
border-collapse: separate;
background-color: white;
}
table.templatepolicy-table .TemplateName
{
background-color: rgb(232, 232, 232);
color: #2779AC;
font-weight:bolder;
}
table.templatepolicy-table td
{
color: #656565;
width: 100%;
border-width: 0px;
padding: 5px;
border-style: none;
border-color: white;
background-color: rgb(232, 232, 232);
}
table.templatepolicy-table td:hover
{
color: #FFF;
background-color: #2779AC;
}