As I was working on creating a calendar design, I found myself pondering how to incorporate a hover effect using Bootstrap 4 for the cells.
Here is a preview of the current calendar design
I am aiming to achieve a hover effect similar to Bootstrap's Hoverable rows without altering Bootstrap's CSS.
Do you have any suggestions on achieving this effect? Also, is there a way to ensure that the table has completely symmetrical (square) cells?
EDIT:
table td:hover {
background-color: rgba(0,0,0,.075);
}
It seems that the code mentioned above is not producing the desired outcome. The cell should display a darker blue color, rather than gray.