Hover

Apply hover to the a table by using the hover modifier.

Hello, I'm a hover table
# Title Rating Year
1 Swordfish 10 2001
2 WarGames 9.0 1983
3 Sneakers 8.9 1992
Markup

Toggle example guides Toggle HTML markup

<table pam-Table="hover">
    <caption>Hello, I'm a hover table</caption>
    <thead>
        <tr>
            <th>#</th>
            <th>Title</th>
            <th>Rating</th>
            <th>Year</th>
        </tr>
    </thead>
    <tbody>
        <tr>
            <td>1</td>
            <td>Swordfish</td>
            <td>10</td>
            <td>2001</td>
        </tr>
        <tr>
            <td>2</td>
            <td>WarGames</td>
            <td>9.0</td>
            <td>1983</td>
        </tr>
        <tr>
            <td>3</td>
            <td>Sneakers</td>
            <td>8.9</td>
            <td>1992</td>
        </tr>
    </tbody>
</table>