Losing :hover status on <tr> between <td>'s in Chrome

做~自己de王妃 提交于 2019-12-23 15:23:26

问题


I am trying to achieve a simple table row hover effect by changing the background colour of a row when a users hovers overs over it, that was simple enough:

tr:hover {
    background: red;
}

However I have noticed a bug in chrome where there is a small space between cells in a row where I lose the :hover and the <tr> flicks the style on/off as you move over it even though my mouse is still on the row.

I've tried border-collapse: collapse, cellspacing="0" but cannot see why I am losing the <tr> hover between cells, it only happens either side of cells, not above/below them. It works as expected in Firefox.

Here is a JSFiddle, in Chrome, try to slowly move your mouse from 'first' to 'second' and you will see there is a very thin point between them where the <tr> loses it's hover background.

I have reported this as a Chromium bug here.


回答1:


I have no idea why this works, but setting the positioning on the <td> elements seems to fix this in Chrome.

td {
    padding: 2px 5px;
    position:relative;
}

jsFiddle example.



来源:https://stackoverflow.com/questions/10638819/losing-hover-status-on-tr-between-tds-in-chrome

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!