There are tons HTML tags, values, and attribute/value pairs that are vendor specific and as a result are either not well-known or are poorly documented. For instance:
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
If the browser is IE the page will either be rendered in chrome frame or the latest IE rendering engine.
Another example:
<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">
This markup tweaks the mobile browser's display size to better fit the content to a smart-phone screen.
Both of these examples are highly usable, but moreover highly undocumented. You only discover them if you are lucky enough to stumble across a particular blog post on it, or if you are the kind of dude who likes to read through browser specifications (not likely).
This brings me to my question: what web resources are available where I can discover, learn, and/or reference browser-specific markup like this?