IE 11 | Pseudo Element
Pseudo Classes ::before and ::after elements woking on IE11
HTML
<!DOCTYPE html>
<html>
<head>
<style>
h1::after {
content: url(http://www.myiconfinder.com/uploads/iconsets/256-256-2874c29b56e4c8e8f5418c8c8d9109a5-users.png);
}
</style>
</head>
<body>
<h1>Hi I'm internet explorer</h1>
</body>
</html>