Is it possible to use :hover on :first-child:after?

MayclecatoSalgy

New Member
HTML\[code\]<div> <div></div></div>\[/code\]CSS\[code\]div > :first-child:after { background-color: orange; color: #fff; font-family: sans-serif; font-size: 50px; line-height: 50px; text-align: center; vertical-align: middle; -webkit-font-smoothing: antialiased; content: "hello world"; display: block; font-size: 50px; height: 160px; line-height: 160px; margin-top: 14px; font-weight: normal;}div > :first-child:after:hover { background-color: #44b800;}\[/code\]Fiddlehttp://jsfiddle.net/VSBr6/Basically, all I want to do is change the background-color on hover but it doesn't seem to work.
 
Back
Top