Note that there are some explanatory texts on larger screens.

plurals
  1. POCan't :hover whole line of a table
    primarykey
    data
    text
    <p>When I pass mouse over a cell of the table, I want to highlight the whole line! But with the code that I have all I can to highlight just one cell! This is my table:</p> <pre><code>&lt;table id="myTable" class="tablesorter"&gt; &lt;thead&gt; &lt;tr&gt; &lt;th&gt;Title1&lt;/th&gt; &lt;th&gt;Title2&lt;/th&gt; &lt;th&gt;Title3&lt;/th&gt; &lt;/tr&gt; &lt;/thead&gt; &lt;tbody&gt; &lt;tr&gt; &lt;td&gt;Bach&lt;/td&gt; &lt;td&gt;42526&lt;/td&gt; &lt;td&gt;Dec 10, 2002 5:14 AM&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Doe&lt;/td&gt; &lt;td&gt;243155&lt;/td&gt; &lt;td&gt;Jan 18, 2007 9:12 AM&lt;/td&gt; &lt;/tr&gt; &lt;tr&gt; &lt;td&gt;Conway&lt;/td&gt; &lt;td&gt;35263&lt;/td&gt; &lt;td&gt;Jan 18, 2001 9:12 AM&lt;/td&gt; &lt;/tr&gt; &lt;/tbody&gt; &lt;/table&gt; </code></pre> <p>and css is</p> <pre><code> /*Table sort*/ table.tablesorter { font-family:arial; background-color: #e6EEEE; font-size: 8pt; width: 100%; text-align: left; } table.tablesorter thead tr th, table.tablesorter tfoot tr th { background-color: #e6EEEE; border: 1px solid #FFF; font-size: 8pt; padding: 4px; } table.tablesorter thead tr .header { background-repeat: no-repeat; background-position: center right; cursor: pointer; } table.tablesorter tbody td { color: #3D3D3D; padding: 4px; background-color: #FFF; vertical-align: top; } table.tablesorter tbody tr.odd td { background-color:#F0F0F6; } table.tablesorter thead tr .headerSortUp { } table.tablesorter thead tr .headerSortDown { } table.tablesorter thead tr .headerSortDown, table.tablesorter thead tr .headerSortUp { /*background-color: #8dbdd8;*/ background-color: #e6EEEE; } table.tablesorter tbody tr :hover { background: #8dbdd8; } </code></pre> <p>What is missing in my CSS to highlight whole line? </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload