I have been tweaking my CSS file to format the <ins> tag. Right now in FireFox the inserted text is automatically prefixed with the bold string “[Update] ” and posfixed with the insertion date time.
The CSS fragment is like this:
ins:before
{
font-weight: bold;
content: "[Update] ";
}
ins:after
{
font-size: 0.6em;
vertical-align: super;
content: attr(datetime);
}
This is how FireFox renders it:
None of this, of course, works in Internet Explorer (at least not without a workaround).
[update @ 2006-01-27 21:48] I am reverted back all such changes. Content is content, it shouldn’t be encoded in the style sheets.
