I am generating pipes in my list using pseudo-classes and it works fine except they are not being rendered in IE 7. The code looks like:
.brandLinks a:after {
margin: 0 4px;
content: "|";
}
.brandLinks a:last-child:after {
content: " "
}
Is this just something IE 7 does not do or is my code wonky?