My codepen: http://codepen.io/leongaban/pen/iJBrn
Note this isn't for a regular webpage, I'm building an HTML email, however for modern browsers / email clients it would be nice to have a simple rollover color (no javascript). Not sure why my hover isn't work.
I'm using code found from the other TD hover stackoverflow questions I've found so far.
td.blue-button:hover {
background-color: #267aa6;
}
How would you create this?
You inline style is taking precedence over the external
td.blue-button:hover
.Check this fiddle
Extract the class
Check this CodePen.
HTML:
CSS: