Standards mode and css link
Interesting trick with standards mode. Given you have a correct doctype entry (I’m using html5′s <!doctype html>) and your link to stylesheet is ambiguous (going bleeding edge here by calling my stylesheet ‘s’, instead of ‘s.css’ and you leave off the type=”text/css”, Firefox 3.0.x won’t render your sheet.
Even though the default document type for a style link is “text/css”, it doesn’t work. The reason, I think, is in the server sending ‘s’ as text instead of ‘text/css’. The cool thing is a file named s.css means the server will send the file as mime type text/css thanks to ‘magic’ and you can leave off the type in the link element.
appliance
lowmagnet 22:16 on 2009/06/20 Permalink |
Actually, if you wanted to degrade further and treat tags as text on older browsers, you could further simplify the tag list by having it just list the tag names, then transforming the names to links in DOM. “something else” becomes “/tags/something-else”.
lowmagnet 22:18 on 2009/06/20 Permalink |
I also happen to think that tags are like those fridge poem magnets and they don’t need commas or ands between them.
lowmagnet 08:33 on 2009/06/21 Permalink |
Borders around the tags would do. like fridge magnets. Tags could be just an xml chunk styled or converted with js to html.