links for 2011-01-21
-
find·a·bil·i·ty n
1. The quality of being locatable or navigable.
2. The degree to which a particular object is easy to discover or locate.
3. The degree to which a system or environment supports navigation and retrieval. -
Some screen properties already have “inherit” as a default value, forcing themselves on children in the document tree. Here’s the list:
* border-collapse
* border-spacing
* caption-side
* color
* cursor
* direction
* empty-cells
* font
* font-family
* font-stretch
* font-size
* font-size-adjust
* font-style
* font-variant
* font-weight
* letter-spacing
* line-height
* list-style
* list-style-image
* list-style-type
* quotes
* text-align
* text-indent
* text-transform
* white-space
* word-spacingNote: When using the universal selector * in CSS, be careful not to include any of the properties above that naturally inherit. Doing so will ruin the inheritance flow in the document later on.
-
javascript:(function(){var a=window.open('about:blank').document;a.write('<!DOCTYPE html><html><head><title>Source of '+location.href+'</title><meta name="viewport" content="width=device-width" /></head><body></body></html>');a.close();var b=a.body.appendChild(a.createElement('pre'));b.style.overflow='auto';b.style.whiteSpace='pre-wrap';b.appendChild(a.createTextNode(document.documentElement.innerHTML))})();