2009/05/11

Internet Explorer 6 Duplicate Characters Bug

Just for reference if you come across the old issue with IE 6 duplicating characters at the end of a block of text, check out this article at Position Is Everything.

Labels: , ,

2008/12/20

Removing automatic quotes from the q (quote) tag

Just a quick note, if you're ever looking to remove the automatically generated quotes from a <q> (quote) tag, all you need to do is use a little CSS to unstyle it.
q:before,
q:after {
content: "";
}

IE doesn't understand this, but it doesn't automatically make the quotes anyway. For more information see this article.

Labels: ,