I am facing an issue where I want to focus on a full table when it is selected, but unfortunately, clicking on the table does not trigger the focus effect.
In an attempt to work around this problem, I tested the hover effect on the table and it worked perfectly fine. How can I achieve the focus effect on the entire table?
https://jsfiddle.net/bbe7x7bp/1/
table {
border: 1px solid #e2e2e4;
text-align: left;
}
table:hover {
border: 3px solid #878b93;
outline: 1px solid #242b3a;
}
.table:focus {
border: 1px solid blue;
outline: 1px solid darkblue;
}