如何创建 table 并在行悬停时更改边框颜色?
How can I create table with a changing border color on row hover?
我有一个有七列的 table,当鼠标悬停在任何行上时,我想显示第一个左列边框为绿色,最后一个右列边框为绿色,如何在 PHP 中编写该代码或 jQuery?
使用纯 CSS 可以这样做:
tr:hover td:first-child{
border-left-color:green;
}
tr:hover td:last-child{
border-right-color:red;
}
我有一个有七列的 table,当鼠标悬停在任何行上时,我想显示第一个左列边框为绿色,最后一个右列边框为绿色,如何在 PHP 中编写该代码或 jQuery?
使用纯 CSS 可以这样做:
tr:hover td:first-child{
border-left-color:green;
}
tr:hover td:last-child{
border-right-color:red;
}