Is it possible to only display the \[code\]:after\[/code\] pseudo using \[code\]:hover\[/code\]? For example using alternative elements.\[code\]#parent{}#child{display:none;}#parent:hover >#child{display:block;}\[/code\]As far as I've got with the same method:\[code\]#parent{}#parent:after{content:'hi';display:none;}#parent:hover #parent:after{display:block;}\[/code\]Is it possible at all? Or am I fooling myself?