I have the following piece of HTML/CSS code which is used to display pages based on the number of rows retrieved from a database.
Upto this there is no question. I want to apply the CSS class something like the following to all of those buttons on mouse hover.
.button:hover {
border:1px solid #999;
color:#000;
}
Those buttons with the name attribute btnPage
are generated dynamically in a loop. Therefore, I think it is inconvenient to apply the preceding CSS class based on the id
attribute.
So, how can this class be applied to those buttons on hover?